Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 13 for dummy (0.024 sec.)
17.8. dummy_threading --- threading の代替モジュール — Python 3.6.5 ドキュメン... 12739
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 17. 並行実行 » 17.8. dummy_threading --- threading の代替モジュール ¶ ソースコ ... ード: Lib/dummy_threading.py このモジュールは threading モジュール ... try : import threading except ImportError : import dummy_threading as threading 生成するスレッドが、他のブロ ... : threading , モジュール , ドキュメント , import , dummy , 索引 , thread , Software , Foundation , トピック ...
https://man.plustar.jp/python/library/dummy_threading.html - [similar]
17.10. _dummy_thread --- _thread の代替モジュール — Python 3.6.5 ドキュメント 12633
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 17. 並行実行 » 17.10. _dummy_thread --- _thread の代替モジュール ¶ ソースコード ... : Lib/_dummy_thread.py このモジュールは _thread モジュールのイン ... try : import _thread except ImportError : import _dummy_thread as _thread 生成するスレッドが、他のブロック ... ード: thread , モジュール , import , ドキュメント , dummy , 索引 , 標準 , ライブラリ , 並行 , 実行 前のトピッ ...
https://man.plustar.jp/python/library/_dummy_thread.html - [similar]
17.9. _thread --- 低水準の スレッド API — Python 3.6.5 ドキュメント 9290
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... す。 _thread を使用することのできないシステムでは、 _dummy_thread が用意されています。 dummy_thread はこのモジ ... timeout , 終了 , 例外 , 関数 前のトピックへ 17.8. dummy_threading --- threading の代替モジュール 次のトピッ ... クへ 17.10. _dummy_thread --- _thread の代替モジュール ナビゲーション ...
https://man.plustar.jp/python/library/_thread.html - [similar]
17. 並行実行 — Python 3.6.5 ドキュメント 9184
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... キー 17.2.2.12. ログ記録 17.2.2.13. multiprocessing.dummy モジュール 17.2.3. プログラミングガイドライン 17.2 ... ービスの一部で使われるサポートモジュールです: 17.8. dummy_threading --- threading の代替モジュール 17.9. _th ... read --- 低水準の スレッド API 17.10. _dummy_thread --- _thread の代替モジュール 関連キーワード ...
https://man.plustar.jp/python/library/concurrency.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 8639
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... he environment where the top-level script is run. _dummy_thread Drop-in replacement for the _thread module. ... rs. doctest Test pieces of code within docstrings. dummy_threading Drop-in replacement for the threading mo ... tion API for dealing with sockets. multiprocessing.dummy Dumb wrapper around threading. multiprocessing.man ...
https://man.plustar.jp/python/py-modindex.html - [similar]
Python 標準ライブラリ — Python 3.6.5 ドキュメント 8005
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... スケジューラ 17.7. queue --- 同期キュークラス 17.8. dummy_threading --- threading の代替モジュール 17.9. _th ... read --- 低水準の スレッド API 17.10. _dummy_thread --- _thread の代替モジュール 18. プロセス間 ...
https://man.plustar.jp/python/library/index.html - [similar]
18. プロセス間通信とネットワーク — Python 3.6.5 ドキュメント 7794
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ェクト , 作成 , タスク , 関数 前のトピックへ 17.10. _dummy_thread --- _thread の代替モジュール 次のトピックへ ...
https://man.plustar.jp/python/library/ipc.html - [similar]
17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 7794
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ched --- イベントスケジューラ 次のトピックへ 17.8. dummy_threading --- threading の代替モジュール ナビゲーシ ...
https://man.plustar.jp/python/library/queue.html - [similar]
17.1. threading --- スレッドベースの並列処理 — Python 3.6.5 ドキュメント 7794
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... がないために threading を使えないような状況向けに dummy_threading を提供しています。 注釈 ここには載ってい ... はデーモンスレッドではありません。 "ダミースレッド (dummy thread)" オブジェクトを作成することができます。 ダ ...
https://man.plustar.jp/python/library/threading.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 7794
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... しない実装の thread モジュールインターフェイスとして dummy_thread と dummy_threading が追加されました。これは ... hreading as _threading except ImportError : import dummy_threading as _threading この例ではモジュール名とし ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
PREV 1 2 NEXT