Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 19 for threads (0.030 sec.)
27.2. faulthandler --- Python tracebackのダンプ — Python 3.6.5 ドキュメント 13369
ナビゲーション 索引 モジュール | 次へ | 前へ | 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 ) ¶ フォールトハンドラを有効にします。 SIGSEG ... kをダンプするハンドラをインストールします。もし all_threads が True であれば、すべての実行中のスレッドについて ...
https://man.plustar.jp/python/library/faulthandler.html - [similar]
初期化 (initialization)、終了処理 (finalization)、スレッド — Python 3.6.5 ドキ... 11901
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 数が設定されていればその値を返します。 スレッド状態 (thread state) とグローバルインタプリタロック (global inter ... Python インタプリタはスレッドごとに必要な情報を PyThreadState と呼ばれるデータ構造の中に保存します。そしてグ ... ローバル変数として現在の PyThreadState を指すポインタを1つ持ちます。このグローバル変数 ... は PyThreadState_Get() を使って取得できます。 拡張コード内で GI ...
https://man.plustar.jp/python/c-api/init.html - [similar]
17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 11542
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ork ( item ) q . task_done () q = queue . Queue () threads = [] for i in range ( num_worker_threads ): t = th ... reading . Thread ( target = worker ) t . start () threads . append ( t ) for item in source (): q . put ( it ... 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]
17.1. threading --- スレッドベースの並列処理 — Python 3.6.5 ドキュメント 8981
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ken by each call to release() . The order in which threads are awoken should not be relied on. blocking を fa ... hronization primitive for use by a fixed number of threads that need to wait for each other. Each of the thre ... the wait() method and will block until all of the threads have made their wait() calls. At this point, the t ...
https://man.plustar.jp/python/library/threading.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 8810
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... る必要があります。 ThreadingMixIn クラスには daemon_threads 属性があり、サーバがスレッドの終了を待ち合わせるか ... s requests in an environment that supports neither threads nor fork() (or where these are too expensive or in ... t can potentially be connected for a long time (if threads or subprocesses cannot be used). See asyncore for ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 8264
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ことはありません。とはいえ、ロックは Py_BEGIN_ALLOW_THREADS マクロで一時的に解除したり、 Py_END_ALLOW_THREADS ... item = PyList_GetItem ( list , 0 ); Py_BEGIN_ALLOW_THREADS ... some blocking I / O call ... Py_END_ALLOW_THRE ...
https://man.plustar.jp/python/extending/extending.html - [similar]
9.4. decimal --- 十進固定及び浮動小数点数の算術演算 — Python 3.6.5 ドキュメント 7888
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... NY ¶ -849999999 -1999999999999999997 decimal. HAVE_THREADS ¶ デフォルト値は True です。Python がスレッド無しで ... 例を示します: # Set applicationwide defaults for all threads about to be launched DefaultContext . prec = 12 De ... 1 setcontext ( DefaultContext ) # Afterwards, the threads can be started t1 . start () t2 . start () t3 . st ...
https://man.plustar.jp/python/library/decimal.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 7888
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... returned connection may be shared across multiple threads. When using multiple threads with the same connect ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 7888
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... he profiler to know about context switches between threads, so it does not make sense to use this in the pres ... ence of multiple threads. Also, its return value is not used, so it can sim ...
https://man.plustar.jp/python/library/sys.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 7888
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... nt.futures Execute computations concurrently using threads or processes. configparser Configuration file pars ...
https://man.plustar.jp/python/py-modindex.html - [similar]
PREV 1 2 NEXT