Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 38714d6

Browse files
committed
Merge issue #16174: Fix suggested usage of dummy_threading module.
Patch by Berker Peksag.
2 parents 570bc4c + a256841 commit 38714d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/library/dummy_threading.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Suggested usage is::
1717
try:
1818
import threading
1919
except ImportError:
20-
import dummy_threading
20+
import dummy_threading as threading
2121

2222
Be careful to not use this module where deadlock might occur from a thread being
2323
created that blocks waiting for another thread to be created. This often occurs

0 commit comments

Comments
 (0)