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