From: Andrew Svetlov Date: Tue, 9 Oct 2012 10:44:16 +0000 (+0300) Subject: Issue #16174: Fix suggested usage of dummy_threading module. X-Git-Tag: v3.3.1rc1~813^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a256841b4bd923c5ac149a97318cde23c1086e39;p=python Issue #16174: Fix suggested usage of dummy_threading module. Patch by Berker Peksag. --- diff --git a/Doc/library/dummy_threading.rst b/Doc/library/dummy_threading.rst index b578324873..30a3ebba67 100644 --- a/Doc/library/dummy_threading.rst +++ b/Doc/library/dummy_threading.rst @@ -17,7 +17,7 @@ Suggested usage is:: try: import threading except ImportError: - import dummy_threading + import dummy_threading as threading Be careful to not use this module where deadlock might occur from a thread being created that blocks waiting for another thread to be created. This often occurs