Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 150 for function (0.077 sec.)
27.2. faulthandler --- Python tracebackのダンプ — Python 3.6.5 ドキュメント 5950
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Added support for passing file descriptor to this function. 27.2.2. フォールトハンドラの状態 ¶ faulthandler. ... Added support for passing file descriptor to this function. バージョン 3.6 で変更: On Windows, a handler for ... Added support for passing file descriptor to this function. faulthandler. cancel_dump_traceback_later ( ) ¶ d ... Added support for passing file descriptor to this function. faulthandler. unregister ( signum ) ¶ ユーザシグナ ...
https://man.plustar.jp/python/library/faulthandler.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 5856
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ら、明示的に locals 辞書を渡してください。 filter ( function , iterable ) ¶ iterable の要素のうち function が真 ... スか、反復をサポートするコンテナか、イテレータです。 function が None なら、恒等関数を仮定します。すなわち、 ite ... の偽である要素がすべて除去されます。 なお、 filter(function, iterable) は、関数が None でなければジェネレータ式 ... (item for item in iterable if function(item)) と同等で、関数が None なら (item for item i ...
https://man.plustar.jp/python/library/functions.html - [similar]
27.3. pdb --- Python デバッガ — Python 3.6.5 ドキュメント 5856
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 点では、この関数は run() と同様です。 pdb. runcall ( function , *args , **kwds ) ¶ function (関数またはメソッドオ ... ression , globals=None , locals=None ) ¶ runcall ( function , *args , **kwds ) ¶ set_trace ( ) ¶ 前述のこれら関 ... ーム方向に移動します。 b(reak) [([filename:]lineno | function) [, condition]] ¶ lineno 引数を指定した場合、現在の ... ルのその行番号の場所にブレークポイントを設定します。 function 引数を指定した場合、その関数の中の最初の実行可能文 ...
https://man.plustar.jp/python/library/pdb.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 5856
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... れは「関数の部分適用」と呼ばれています。 partial は (function, arg1, arg2, ... kwarg1=value1, kwarg2=value2) とい ... 能オブジェクトですので、それを呼べば、引数の埋まった function を実行したのと同じことになります。 以下にあるのは、 ... per ( * args , ** kwds ): print 'Calling decorated function' return f ( * args , ** kwds ) functools . update_ ... per ( * args , ** kwds ): print 'Calling decorated function' return f ( * args , ** kwds ) return wrapper 参考 ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
18.8. signal --- 非同期イベントにハンドラを設定する — Python 3.6.5 ドキュメント 5798
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ) , pthread_sigmask() , sigpending() and sigwait() functions return human-readable enums . 以下に signal モジュ ... e signals specified in the signal set sigset . The function accepts the signal and removes it from the pending ... set is already pending for the calling thread, the function will return immediately with information about tha ... andler is not called for the delivered signal. The function raises an InterruptedError if it is interrupted by ...
https://man.plustar.jp/python/library/signal.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 5751
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... PyMethodDef Custom_methods [] = { { "name" , ( PyCFunction ) Custom_name , METH_NOARGS , "Return the name, co ... take a CustomObject * argument, but the tp_dealloc function pointer expects to receive a PyObject * argument. ... 不可能になります。) We also define an initialization function which accepts arguments to provide initial values ... self -> last ); } The method is implemented as a C function that takes a Custom (or Custom subclass) instance ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
デザインと歴史 FAQ — Python 3.6.5 ドキュメント 5751
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... 呼び出す関数に対応づける辞書を作れます。例えば: def function_1 ( ... ): ... functions = { 'a' : function_1 , 'b ... ' : function_2 , 'c' : self . method_1 , ... } func = functions ... は、 Python では代入により簡単に手に入れられます: function ( args ) . mydict [ index ][ index ] . a = 21 func ... tion ( args ) . mydict [ index ][ index ] . b = 42 function ( args ) . mydict [ index ][ index ] . c = 63 こう ...
https://man.plustar.jp/python/faq/design.html - [similar]
3. Defining Extension Types: Assorted Topics — Python 3.6.5 ドキュメント 5658
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... rofunc tp_getattro ; setattrofunc tp_setattro ; /* Functions to access object as input/output buffer */ PyBuff ... char * tp_doc ; /* Documentation string */ /* call function for all accessible objects */ traverseproc tp_trav ... dDef { const char * ml_name ; /* method name */ PyCFunction ml_meth ; /* implementation function */ int ml_fla ... terfunc tp_iter ; iternextfunc tp_iternext ; These functions provide support for the iterator protocol. Both h ...
https://man.plustar.jp/python/extending/newtypes.html - [similar]
29.10. __future__ --- future 文の定義 — Python 3.6.5 ドキュメント 5658
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... t 2.5.0a1 2.6 PEP 343 : The "with" Statement print_function 2.6.0a2 3.0 PEP 3105 : Make print a function unico ...
https://man.plustar.jp/python/library/__future__.html - [similar]
32.7. tokenize --- Pythonソースのためのトークナイザ — Python 3.6.5 ドキュメント 5658
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eadline() method of file objects. Each call to the function should return one line of input as bytes. このジェ ... ect the encoding of source files it tokenizes. The function it uses to do this is available: tokenize. detect_ ... encoding ( readline ) ¶ The detect_encoding() function is used to detect the encoding that should be used ...
https://man.plustar.jp/python/library/tokenize.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT