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: threading.py contains undefined name in self-test code
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: brian.curtin Nosy List: brian.curtin, python-dev, scoder
Priority: normal Keywords:

Created on 2012-08-06 11:05 by scoder, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg167554 - (view) Author: Stefan Behnel (scoder) * (Python committer) Date: 2012-08-06 11:05
Line 912 of threading.py, Py2.7, reads:

            self.queue = deque()

"deque" hasn't been imported.
msg167853 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-08-10 04:05
New changeset 260f3ad7af4b by Brian Curtin in branch '2.7':
Fix #15567. collections.deque wasn't imported
http://hg.python.org/cpython/rev/260f3ad7af4b
History
Date User Action Args
2022-04-11 14:57:33adminsetgithub: 59772
2012-08-10 04:08:55brian.curtinsetstatus: open -> closed

nosy: + brian.curtin
assignee: brian.curtin
resolution: fixed
stage: resolved
2012-08-10 04:05:31python-devsetnosy: + python-dev
messages: + msg167853
2012-08-06 11:05:23scodercreate