Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 129 for call (0.077 sec.)
18.5. asyncio --- 非同期 I/O、イベントループ、コルーチンおよびタスク — Python 3... 6091
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 18.5.1.1. イベントループの実行 18.5.1.2. 呼び出し (call) 18.5.1.3. 遅延呼び出し 18.5.1.4. Future 18.5.1.5. ... ハンドル 18.5.1.18. イベントループの例 18.5.1.18.1. call_soon() を使った Hello World 18.5.1.18.2. call_late ... .3.6. タスク関数 18.5.4. Transports and protocols (callback based API) 18.5.4.1. トランスポート 18.5.4.1.1 ...
https://man.plustar.jp/python/library/asyncio.html - [similar]
7. 単純文 (simple statement) — Python 3.6.5 ドキュメント 6091
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... except for the last __setitem__() or __setattr__() call. 参考 PEP 526 - 変数と属性のアノテーション文法 PEP ... ad happened" ) from exc ... Traceback (most recent call last): File "<stdin>" , line 2 , in <module> ZeroD ... of the following exception: Traceback (most recent call last): File "<stdin>" , line 4 , in <module> Runti ... mething bad happened" ) ... Traceback (most recent call last): File "<stdin>" , line 2 , in <module> ZeroD ...
https://man.plustar.jp/python/reference/simple_stmts.html - [similar]
メモリ管理 — Python 3.6.5 ドキュメント 6043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ェクトを C ライブラリが公開している関数: malloc() 、 calloc() 、 realloc() および free() で操作しようとしては ... ロックアロケーターは次の関数を利用します: malloc() , calloc() , realloc() , free() 0バイトを要求されたときに ... は malloc(1) (あるいは calloc(1, 1) ) を呼びます。 バージョン 3.4 で追加. void ... ーにはいかなる初期化も行われません。 void* PyMem_RawCalloc ( size_t nelem , size_t elsize ) ¶ 各要素が elsi ...
https://man.plustar.jp/python/c-api/memory.html - [similar]
プログラミング FAQ — Python 3.6.5 ドキュメント 6043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... rror になります: >>> foo () Traceback (most recent call last): ... UnboundLocalError : local variable 'x' ... }): # Danger: shared reference to one dict for all calls ... compute something ... mydict [ key ] = value ... れは "memoizing" と呼ばれ、このように実装されます: # Callers will never provide a third parameter for this f ... クラスインスタンスに値を同梱することによって: class callByRef : def __init__ ( self , ** args ): for ( key ...
https://man.plustar.jp/python/faq/programming.html - [similar]
30.2. codeop --- Pythonコードをコンパイルする — Python 3.6.5 ドキュメント 6043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... スは組み込み関数 compile() とシグネチャが一致する __call__() メソッドを持っていますが、インスタンスが __fut ... タンスは compile_command() とシグネチャが一致する __call__() メソッドを持っています。インスタンスが __futur ...
https://man.plustar.jp/python/library/codeop.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 6043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e are passed to BaseHeader from the header_factory call. The string value of any header object is the valu ... is exactly the value passed in the header_factory call for name ; that is, case is preserved. defects ¶ A ... eader also provides the following method, which is called by the email library code and should not in gene ... ral be called by application programs: fold ( * , policy ) ¶ R ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
18. プロセス間通信とネットワーク — Python 3.6.5 ドキュメント 6043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 18.5.1.1. イベントループの実行 18.5.1.2. 呼び出し (call) 18.5.1.3. 遅延呼び出し 18.5.1.4. Future 18.5.1.5. ... ハンドル 18.5.1.18. イベントループの例 18.5.1.18.1. call_soon() を使った Hello World 18.5.1.18.2. call_late ... .3.6. タスク関数 18.5.4. Transports and protocols (callback based API) 18.5.4.1. トランスポート 18.5.4.1.1 ...
https://man.plustar.jp/python/library/ipc.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 6043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... bind_and_activate is true, the constructor automatically attempts to invoke server_bind() and server_activ ... mended to use the server in a with statement. Then call the handle_request() or serve_forever() method of ... r object to process one or many requests. Finally, call server_close() to close the socket (unless you use ... uest ( ) ¶ Process a single request. This function calls the following methods in order: get_request() , v ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
34.4. winsound --- Windows 用の音声再生インタフェース — Python 3.6.5 ドキュメン... 6043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 出されます。 winsound. PlaySound ( sound , flags ) ¶ Call the underlying PlaySound() function from the Platf ... is raised. winsound. MessageBeep ( type=MB_OK ) ¶ Call the underlying MessageBeep() function from the Pla ...
https://man.plustar.jp/python/library/winsound.html - [similar]
What's New in Python 2.4 — Python 3.6.5 ドキュメント 6043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 込み、タプル (stdout_data, stderr_data) を返します。 call() は Popen コンストラクタにその引数を流し込むショー ... 対する安全な置き換えとなりえます: sts = subprocess . call ([ 'dpkg' , '-i' , '/tmp/new-package.deb' ]) if st ... りに文字列を与えることが出来ます: sts = subprocess . call ( 'dpkg -i /tmp/new-package.deb' , shell = True ) ... mal("1275.9184") >>> a ** b Traceback (most recent call last): ... decimal.InvalidOperation : x ** (non-in ...
https://man.plustar.jp/python/whatsnew/2.4.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT