dummy_threading — Drop-in replacement for thethreading module

Source code:Lib/dummy_threading.py

Deprecated since version 3.7:Python now always has threading enabled. Please usethreading instead.


This module provides a duplicate interface to thethreading module.It was meant to be imported when the_thread module was not providedon a platform.

Be careful to not use this module where deadlock might occur from a thread beingcreated that blocks waiting for another thread to be created. This often occurswith blocking I/O.