16.4. dummy_threading --- threading の代替モジュール

ソースコード: Lib/dummy_threading.py


このモジュールは threading モジュールのインターフェースをそっくりまねるものです。 thread モジュールがサポートされていないプラットフォームで import することを意図して作られたものです。

おすすめの使い道は:

try:
    import threading as _threading
except ImportError:
    import dummy_threading as _threading

生成するスレッドが他のブロックしたスレッドを待ち、デッドロック発生の可能性がある場合には、このモジュールを使わないようにしてください。ブロッキング I/O を使っている場合によく起きます。