Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 129 for call (0.176 sec.)
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 5580
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... arser instance. Optional _factory is a no-argument callable; if not specified use the message_factory from ... the policy . Call _factory whenever a new message object is needed. ... object. It is undefined what happens if feed() is called after this method has been called. class email.p ... a bytes-like object instead of a file-like object. Calling this method on a bytes-like object is equivalen ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
27.2. faulthandler --- Python tracebackのダンプ — Python 3.6.5 ドキュメント 5580
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... back is dumped or cancel_dump_traceback_later() is called: see issue with file descriptors . この関数は番犬 ... ult Current thread 0x00007fb899f39700 (most recent call first): File "/home/python/cpython/Lib/ctypes/__in ...
https://man.plustar.jp/python/library/faulthandler.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 5580
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... w() super() bytes() float() iter() print() tuple() callable() format() len() property() type() chr() froze ... ト , bytes と bytearray の操作 も参照してください。 callable ( object ) ¶ object 引数が呼び出し可能オブジェ ... ンスを返します) です。また、インスタンスはクラスが __call__() メソッドを持つなら呼び出し可能です。 バージョン ... statements that are in effect in the code that is calling compile() . If the flags argument is given and ...
https://man.plustar.jp/python/library/functions.html - [similar]
12.1. pickle --- Python オブジェクトの直列化 — Python 3.6.5 ドキュメント 5580
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... thod upon unpickling. __getnewargs__() will not be called if __getnewargs_ex__() is defined. バージョン 3. ... 6 で変更: Before Python 3.6, __getnewargs__() was called instead of __getnewargs_ex__() in protocols 2 an ... echo hello world' \n tR." ) Traceback (most recent call last): ... pickle.UnpicklingError : global 'os.sys ... o hello world") \'\n tR.' ) Traceback (most recent call last): ... pickle.UnpicklingError : global 'builti ...
https://man.plustar.jp/python/library/pickle.html - [similar]
6.1. string --- 一般的な文字列操作 — Python 3.6.5 ドキュメント 5580
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 。 いくつかの例です: "Harold's a clever {0!s} " # Calls str() on the argument first "Bring out the holy { ... name!r} " # Calls repr() on the argument first "More {!a} " # Calls ... $100' ) . substitute ( d ) Traceback (most recent call last): ... ValueError : Invalid placeholder in str ... $what' ) . substitute ( d ) Traceback (most recent call last): ... KeyError : 'what' >>> Template ( '$who ...
https://man.plustar.jp/python/library/string.html - [similar]
17.1. threading --- スレッドベースの並列処理 — Python 3.6.5 ドキュメント 5580
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tomic counter representing the number of release() calls minus the number of acquire() calls, plus an init ... counter is zero on entry, block until awoken by a call to release() . Once awoken (and the counter is gre ... rn true. Exactly one thread will be awoken by each call to release() . The order in which threads are awok ... . Each of the threads tries to pass the barrier by calling the wait() method and will block until all of t ...
https://man.plustar.jp/python/library/threading.html - [similar]
32.7. tokenize --- Pythonソースのためのトークナイザ — Python 3.6.5 ドキュメント 5580
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... requires one argument, readline , which must be a callable object which provides the same interface as th ... io.IOBase.readline() method of file objects. Each call to the function should return one line of input as ...
https://man.plustar.jp/python/library/tokenize.html - [similar]
9. クラス — Python 3.6.5 ドキュメント 5580
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... is is the method object. When the method object is called with an argument list, a new argument list is co ... and the argument list, and the function object is called with this new argument list. 9.3.5. クラスとイン ... 更されます。このアプローチは他の多重継承のある言語で call-next-method として知られており、単一継承しかない言 ... ( it ) 'c' >>> next ( it ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> next ...
https://man.plustar.jp/python/tutorial/classes.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 5580
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... rom None ... >>> D ({}) . x Traceback (most recent call last): File "<stdin>" , line 1 , in <module> File ... ( attr ) ... >>> C ({}) . x Traceback (most recent call last): File "<stdin>" , line 6 , in __getattr__ Ke ... another exception occurred: Traceback (most recent call last): File "<stdin>" , line 1 , in <module> File ... t.signature() は、Python 呼び出し可能オブジェクト (callable) を調べることを簡単で直接的なものにしてくれます ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
オブジェクトプロトコル (object protocol) — Python 3.6.5 ドキュメント 5531
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ればならない) を持たせることで上書きできます。 int PyCallable_Check ( PyObject *o ) ¶ オブジェクト o が呼び出 ... の関数呼び出しは常に成功します。 PyObject * PyObject_Call ( PyObject *callable_object , PyObject *args , PyO ... New reference. 呼び出し可能な Python オブジェクト callable_object をタプルで指定された引数 args および辞書 ... クトを返し、失敗すると NULL を返します。 Python の式 callable_object(*args, **kw) と同じです。 PyObject * Py ...
https://man.plustar.jp/python/c-api/object.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT