Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 65 for func (0.025 sec.)
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 7013
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... cess. Since some print statements can be parsed as function calls or statements, 2to3 cannot always read f ... iles containing the print function. When 2to3 detects the presence of the from __ ... future__ import print_function compiler directive, it modifies its internal g ... rammar to interpret print() as a function. This change can also be enabled manually with ...
https://man.plustar.jp/python/library/2to3.html - [similar]
32.3. symtable --- コンパイラの記号表へのアクセス — Python 3.6.5 ドキュメント 7013
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 表の型を返します。有り得る値は 'class' , 'module' , 'function' です。 get_id ( ) ¶ 記号表の識別子を返します。 ... 子になった記号表のリストを返します。 class symtable. Function ¶ 関数またはメソッドの名前空間。このクラスは S ... 例えば: >>> table = symtable . symtable ( "def some_func(): pass" , "string" , "exec" ) >>> table . lookup ... ( "some_func" ) . is_namespace () True 一つの名前が複数のオブジ ...
https://man.plustar.jp/python/library/symtable.html - [similar]
18.5.9. asyncio での開発 — Python 3.6.5 ドキュメント 6913
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... future = asyncio . run_coroutine_threadsafe ( coro_func (), loop ) result = future . result ( timeout ) # ... "asyncio/coroutines.py" , line 141 , in coro res = func ( * args , ** kw ) File "test.py" , line 5 , in bu ... "asyncio/coroutines.py" , line 141 , in coro res = func ( * args , ** kw ) File "test.py" , line 5 , in bu ...
https://man.plustar.jp/python/library/asyncio-dev.html - [similar]
16.6. logging --- Python 用ロギング機能 — Python 3.6.5 ドキュメント 6813
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( name , lvl , fn , lno , msg , args , exc_info , func=None , extra=None , sinfo=None ) ¶ このメソッドは、 ... evel , pathname , lineno , msg , args , exc_info , func=None , sinfo=None ) ¶ ロギングされているイベントに ... タプルか、利用できる例外情報がない場合は None です。 func -- ロギングの呼び出しを行った関数またはメソッドの名 ... ファイル名 %(filename)s pathname のファイル名部分。 funcName %(funcName)s ロギングの呼び出しを含む関数の名前 ...
https://man.plustar.jp/python/library/logging.html - [similar]
25.1. tkinter --- Tcl/Tk の Python インタフェース — Python 3.6.5 ドキュメント 6813
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ledialog 基本的なダイアログと便宜関数 (convenience function) です。 tkinter.dnd tkinter 用のドラッグアンド ... ind メソッドの形式は: def bind ( self , sequence , func , add = '' ): ここでは: sequence は対象とするイベン ... hn Ousterhout の本の201ページを参照してください)。 func は一引数を取り、イベントが起きるときに呼び出される ... さい。 Widget.tk. createfilehandler ( file , mask , func ) ¶ ファイルハンドラであるコールバック関数 func...
https://man.plustar.jp/python/library/tkinter.html - [similar]
27.6. trace --- Python 文実行のトレースと追跡 — Python 3.6.5 ドキュメント 6813
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の少なくとも 1 つを指定しなければいけません。 --listfuncs オプションは、 --trace オプション、 --count オプシ ... ョンと相互排他的です。 --listfuncs が与えられたとき、 --trace オプション、 --count オ ... race ¶ 実行された通りに行を表示します。 -l , --listfuncs ¶ プログラム実行の際に実行された関数を表示します。 ... ース ¶ class trace. Trace ( count=1 , trace=1 , countfuncs=0 , countcallers=0 , ignoremods=() , ignoredirs=( ...
https://man.plustar.jp/python/library/trace.html - [similar]
オペレーティングシステム関連のユーティリティ — Python 3.6.5 ドキュメント 6713
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... oding (or an alias), and mbstowcs() and wcstombs() functions use the ISO-8859-1 encoding. the current loca ... oding (or an alias), and mbstowcs() and wcstombs() functions uses the ISO-8859-1 encoding. the current loc ... FinalizeEx() and then calls the standard C library function exit(status) . If Py_FinalizeEx() indicates an ... ization no longer ignored. int Py_AtExit ( void ( *func )() ) ¶ Register a cleanup function to be called b ...
https://man.plustar.jp/python/c-api/sys.html - [similar]
26.8. test --- Python 用回帰テストパッケージ — Python 3.6.5 ドキュメント 6713
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 、コードの重複を最小化することができます: class TestFuncAcceptsSequencesMixin : func = mySuperWhammyFunctio ... n def test_func ( self ): self . func ( self . arg ) class AcceptL ... ists ( TestFuncAcceptsSequencesMixin , unittest . TestCase ): arg ... = [ 1 , 2 , 3 ] class AcceptStrings ( TestFuncAcceptsSequencesMixin , unittest . TestCase ): arg ...
https://man.plustar.jp/python/library/test.html - [similar]
17.1. threading --- スレッドベースの並列処理 — Python 3.6.5 ドキュメント 6713
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。 バージョン 3.4 で追加. threading. settrace ( func ) ¶ threading モジュールを使って開始した全てのスレ ... ッドにトレース関数を設定します。 func は各スレッドの run() を呼び出す前にスレッドの sys. ... settrace() に渡されます。 threading. setprofile ( func ) ¶ threading モジュールを使って開始した全てのスレ ... ッドにプロファイル関数を設定します。 func は各スレッドの run() を呼び出す前にスレッドの sys. ...
https://man.plustar.jp/python/library/threading.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 6713
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... on by calling the sys.setdefaultencoding(encoding) function in a customized version of site.py . 8 ビット文 ... でしょう。これは 4 要素のタプルを返します: (encode_func, decode_func, stream_reader, stream_writer) 。 enc ... ode_func は、Unicode 文字列を受け取って 2 要素タプル (strin ... 字の Unicode 文字列が変換されたかを伝えます。 decode_func は encode_func の対となる関数で、8 ビット文字列を受 ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT