Commit 041d5533 authored by R David Murray's avatar R David Murray

#17166: fix _dummy_thread import example.

Report and patch by Berker Peksag.
parent ceaa8b1d
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment