[issue17166] Fix the suggested usage of _dummy_thread module

2013-02-09 Thread R. David Murray
R. David Murray added the comment: Thanks, Berker. -- nosy: +r.david.murray resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> behavior ___ Python tracker _

[issue17166] Fix the suggested usage of _dummy_thread module

2013-02-09 Thread Roundup Robot
Roundup Robot added the comment: 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. ht

[issue17166] Fix the suggested usage of _dummy_thread module

2013-02-09 Thread Ramchandra Apte
Ramchandra Apte added the comment: LGTM. -- nosy: +ramchandra.apte ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue17166] Fix the suggested usage of _dummy_thread module

2013-02-09 Thread Berker Peksag
New submission from Berker Peksag: The "dummy_thread" module has been renamed to "_dummy_thread" in Python 3: >>> import dummy_thread Traceback (most recent call last): File "", line 1, in ImportError: No module named 'dummy_thread' -- assignee: docs@python components