Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 21 for put (0.026 sec.)
17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 14833
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ¶ 満杯の Queue オブジェクトで、非ブロックメソッド put() (または put_nowait() ) が呼ばれたとき、送出される ... ないことを保証しないこと、また qsize() < maxsize が put() がブロックしないことを保証しないことに注意してく ... lse を返します。empty() が True を返しても、後続の put() の呼び出しがブロックしないことは保証されません。 ... れません。同様に、full() が False を返しても、後続の put() の呼び出しがブロックしないことは保証されません。 ...
https://man.plustar.jp/python/library/queue.html - [similar]
18.5.8. キュー — Python 3.6.5 ドキュメント 10959
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の場合、キューの長さが maxsize に達すると yield from put() はアイテムが get() で除去されるまでブロックします ... コルーチン です。 バージョン 3.4.4 で追加. coroutine put ( item ) ¶ 要素をキューに入れます。キューがいっぱい ... メソッドは コルーチン です。 参考 full() メソッド。 put_nowait ( item ) ¶ ブロックせずにアイテムをキューに ... 在ブロック中だった場合、全アイテムが処理されたとき ( put() でキューに追加された全アイテムの task_done() の呼 ...
https://man.plustar.jp/python/library/asyncio-queue.html - [similar]
17.2. multiprocessing --- プロセスベースの並列処理 — Python 3.6.5 ドキュメント 9894
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... す: import multiprocessing as mp def foo ( q ): q . put ( 'hello' ) if __name__ == '__main__' : mp . set_s ... す。 import multiprocessing as mp def foo ( q ): q . put ( 'hello' ) if __name__ == '__main__' : ctx = mp . ... processing import Process , Queue def f ( q ): q . put ([ 42 , None , 'hello' ]) if __name__ == '__main__ ... /マルチプロセシングの特性上、これは信用できません。 put ( obj [ , block [ , timeout ] ] ) ¶ キューの中へ o ...
https://man.plustar.jp/python/library/multiprocessing.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 9505
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eader is set to 0 for methods that expect a body ( PUT , POST , and PATCH ). If body is a string or a byt ... default debug level is 0 , meaning no debugging output is printed. Any value greater than 0 will cause al ... l currently defined debug output to be printed to stdout. The debuglevel is passed ... イステップで送信することもできます。 HTTPConnection. putrequest ( method , url , skip_host=False , skip_acc ...
https://man.plustar.jp/python/library/http.client.html - [similar]
3. setup 設定ファイル (setup configuration file) を書く — Python 3.6.5 ドキュメ... 8575
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... d by-products) --inplace (-i) ignore build-lib and put compiled extensions into the source directory alon ... mpiled extension file ( ext.so on Unix, say) to be put in the same source directory as your pure Python m ...
https://man.plustar.jp/python/distutils/configfile.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 8439
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... byte stream using BytesGenerator should produce output identical to the input [1] . (On the other hand, u ... ts binary data. If optional mangle_from_ is True , put a > character in front of any line in the body tha ... e message object structure rooted at msg to the output file specified when the BytesGenerator instance wa ... rsed message that have not been modified to the output with any bytes with the high bit set reproduced as ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
4. その他の制御フローツール — Python 3.6.5 ドキュメント 8169
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... じみの文型は if 文でしょう。例えば: >>> x = int ( input ( "Please enter an integer: " )) Please enter an i ... inder = 'Please try again!' ): while True : ok = input ( prompt ) if ok in ( 'y' , 'ye' , 'yes' ): return ... t wouldn't" , action , end = ' ' ) print ( "if you put" , voltage , "volts through it." ) print ( "-- Lov ... uldn't" , action , end = ' ' ) ... print ( "if you put" , voltage , "volts through it." , end = ' ' ) ... ...
https://man.plustar.jp/python/tutorial/controlflow.html - [similar]
32.13. pickletools --- pickle 開発者のためのツール群 — Python 3.6.5 ドキュメン... 8033
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... K BININT1 1 4: K BININT1 2 6: \x86 TUPLE2 7: q BINPUT 0 9: . STOP highest protocol among opcodes = 2 32. ... て短い命令コードの説明を各行に表示します。 -o , --output =<file> ¶ 出力結果を書き込むファイル名。 -l , --in ... etools. optimize ( picklestring ) ¶ 使われていない PUT 命令コードを除去した上で、その新しい pickle 文字列 ...
https://man.plustar.jp/python/library/pickletools.html - [similar]
3. 形式ばらない Python の紹介 — Python 3.6.5 ドキュメント 8033
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... >>> s # without print(), \n is included in the output 'First line.\nSecond line.' >>> print ( s ) # with ... を改行したいときにとても役に立ちます: >>> text = ( 'Put several strings within parentheses ' ... 'to have ... them joined together.' ) >>> text 'Put several strings within parentheses to have them jo ...
https://man.plustar.jp/python/tutorial/introduction.html - [similar]
31.5. importlib --- import の実装 — Python 3.6.5 ドキュメント 7898
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... a path entry finder . The former is what you would put on sys.meta_path while the latter is what you crea ... ) # Setting up a meta path finder. # Make sure to put the finder in the proper location in the list in t ... ) # Setting up a path entry finder. # Make sure to put the path hook in the proper location in the list i ...
https://man.plustar.jp/python/library/importlib.html - [similar]
PREV 1 2 3 NEXT