From 041d55331963754ad8c4298ff0584c28eb732223 Mon Sep 17 00:00:00 2001 From: R David Murray Date: Sat, 9 Feb 2013 13:23:46 -0500 Subject: [PATCH] #17166: fix _dummy_thread import example. Report and patch by Berker Peksag. --- Doc/library/_dummy_thread.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/_dummy_thread.rst b/Doc/library/_dummy_thread.rst index 83aec12bbba..ebce74d5a22 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