From: R David Murray Date: Sat, 9 Feb 2013 18:23:46 +0000 (-0500) Subject: #17166: fix _dummy_thread import example. X-Git-Tag: v3.2.4rc1~122 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=041d55331963754ad8c4298ff0584c28eb732223;p=python #17166: fix _dummy_thread import example. Report and patch by Berker Peksag. --- diff --git a/Doc/library/_dummy_thread.rst b/Doc/library/_dummy_thread.rst index 83aec12bbb..ebce74d5a2 100644 --- a/Doc/library/_dummy_thread.rst +++ b/Doc/library/_dummy_thread.rst @@ -17,7 +17,7 @@ Suggested usage is:: try: import _thread except ImportError: - import dummy_thread as _thread + import _dummy_thread as _thread 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