This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Fix the suggested usage of _dummy_thread module
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.2, Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Ramchandra Apte, berker.peksag, docs@python, python-dev, r.david.murray
Priority: normal Keywords: patch

Created on 2013-02-09 08:03 by berker.peksag, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
_dummy_thread-usage.diff berker.peksag, 2013-02-09 08:03 review
Messages (4)
msg181721 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2013-02-09 08:03
The "dummy_thread" module has been renamed to "_dummy_thread" in Python 3:

    >>> import dummy_thread
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    ImportError: No module named 'dummy_thread'
msg181736 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2013-02-09 13:08
LGTM.
msg181751 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-02-09 18:25
New changeset 6af3afbc7211 by R David Murray in branch '3.2':
#17166: fix _dummy_thread import example.
http://hg.python.org/cpython/rev/6af3afbc7211

New changeset dfefae8df4f7 by R David Murray in branch '3.3':
Merge: #17166: fix _dummy_thread import example.
http://hg.python.org/cpython/rev/dfefae8df4f7

New changeset c4512797b879 by R David Murray in branch 'default':
Merge: #17166: fix _dummy_thread import example.
http://hg.python.org/cpython/rev/c4512797b879
msg181752 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2013-02-09 18:26
Thanks, Berker.
History
Date User Action Args
2022-04-11 14:57:41adminsetgithub: 61368
2013-02-09 18:26:19r.david.murraysetstatus: open -> closed

type: behavior

nosy: + r.david.murray
messages: + msg181752
resolution: fixed
stage: resolved
2013-02-09 18:25:29python-devsetnosy: + python-dev
messages: + msg181751
2013-02-09 13:08:39Ramchandra Aptesetnosy: + Ramchandra Apte
messages: + msg181736
2013-02-09 08:03:18berker.peksagcreate