Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 46 for thread (0.082 sec.)
27.2. faulthandler --- Python tracebackのダンプ — Python 3.6.5 ドキュメント 6849
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ulthandler. dump_traceback ( file=sys.stderr , all_threads=True ) ¶ 全スレッドのtracebackを file へダンプしま ... す。もし all_threads が False であれば、現在のスレッドのみダンプします ... 状態 ¶ faulthandler. enable ( file=sys.stderr , all_threads=True ) ¶ フォールトハンドラを有効にします。 SIGSE ... kをダンプするハンドラをインストールします。もし all_threads が True であれば、すべての実行中のスレッドについて ...
https://man.plustar.jp/python/library/faulthandler.html - [similar]
17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 6849
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 。これはPythonのスレッドサポートの状況に依存します。 threading モジュールを参照してください。 The module imple ... ork ( item ) q . task_done () q = queue . Queue () threads = [] for i in range ( num_worker_threads ): t = t ... hreading . Thread ( target = worker ) t . start () threads . append ... join () # stop workers for i in range ( num_worker_threads ): q . put ( None ) for t in threads : t . join ( ...
https://man.plustar.jp/python/library/queue.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 6849
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ファイルコピーを行う 4 つの並列スレッドを実行する、 ThreadPoolExecutor の単純な使用例です: import concurrent. ... futures , shutil with concurrent . futures . ThreadPoolExecutor ( max_workers = 4 ) as e : e . submit ... - 計算の非同期な実行 PEP written by Brian Quinlan. threadpoolexecutor-example はスレッド並列でウェブページを ... m', 'i', 's']) (Contributed by Raymond Hettinger.) threading ¶ threading モジュールに新たに同期クラス Barrie ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
35.11. resource --- リソース使用状態の情報 — Python 3.6.5 ドキュメント 6788
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ムで利用可能なわけではありません。 resource. RUSAGE_THREAD ¶ getrusage() に渡すと現在のスレッドが消費している ...
https://man.plustar.jp/python/library/resource.html - [similar]
What's New in Python 2.4 — Python 3.6.5 ドキュメント 6788
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 'i'] >>> 'h' in d # search the deque True Queue や threading のようないくつかのモジュールで、 collections.de ... ted by Andrew Eland.) imaplib モジュールが IMAP の THREAD コマンドをサポートするようになりました。 (contribu ... g all messages format = '%(levelname):%(process):%(thread):%(message)' ) ほかの logging パッケージへの追加と ... ようになっています。 (Contributed by Lars Gustäbel.) threading モジュールで、スレッドローカルなデータのサポート ...
https://man.plustar.jp/python/whatsnew/2.4.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 6788
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... and Serhiy Storchaka in bpo-18585 and bpo-18725 .) threading ¶ メインスレッドを表現する Thread オブジェクトを ... 、新規関数 main_thread() で得られるようになりました。通常の条件であればこ ... FFIX マクロで置き換えられました) ( bpo-16754 )。 PyThreadState.tick_counter フィールドは削除されました。これ ... でアロケートした文字列はダメです。 ( bpo-16742 ) PyThread_set_key_value() が必ず値をセットするようになりまし ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 6788
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... Fatal Python error : bad trailing pad byte Current thread 0x00007fbcdbd32700 ( most recent call first ): Fil ... をイベントループに送信するための新たな run_coroutine_threadsafe() 関数。 (Contributed by Vincent Michel.) New ... Storchaka in bpo-26482 .) concurrent.futures ¶ The ThreadPoolExecutor class constructor now accepts an optio ... nal thread_name_prefix argument to make it possible to custom ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
ソケットプログラミング HOWTO — Python 3.6.5 ドキュメント 6727
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ソケ ... ientsocket # in this case, we'll pretend this is a threaded server ct = client_thread ( clientsocket ) ct . ...
https://man.plustar.jp/python/howto/sockets.html - [similar]
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 6727
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n or an async def function. asyncio. run_coroutine_threadsafe ( coro , loop ) ¶ Submit a coroutine object to ... is function is meant to be called from a different thread than the one where the event loop is running. Usag ... e to a given loop future = asyncio . run_coroutine_threadsafe ( coro , loop ) # Wait for the result with an ... format ( result )) このドキュメントの asyncio-multithreading 節を参照してください。 注釈 Unlike other functi ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
16.7. logging.config --- ロギングの環境設定 — Python 3.6.5 ドキュメント 6727
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eConfig() で処理できるファイルとして送信されます。 Thread インスタンスを返し、このインスタンスの start() を呼 ...
https://man.plustar.jp/python/library/logging.config.html - [similar]
PREV 1 2 3 4 5 NEXT