Commit a939105a authored by Brian Curtin's avatar Brian Curtin

Fix #15567. collections.deque wasn't imported

parent 774c8a39
...@@ -10,6 +10,7 @@ except ImportError: ...@@ -10,6 +10,7 @@ except ImportError:
import warnings import warnings
from collections import deque as _deque
from time import time as _time, sleep as _sleep from time import time as _time, sleep as _sleep
from traceback import format_exc as _format_exc from traceback import format_exc as _format_exc
...@@ -913,7 +914,7 @@ def _test(): ...@@ -913,7 +914,7 @@ def _test():
self.rc = Condition(self.mon) self.rc = Condition(self.mon)
self.wc = Condition(self.mon) self.wc = Condition(self.mon)
self.limit = limit self.limit = limit
self.queue = deque() self.queue = _deque()
def put(self, item): def put(self, item):
self.mon.acquire() self.mon.acquire()
......
...@@ -92,6 +92,8 @@ Core and Builtins ...@@ -92,6 +92,8 @@ Core and Builtins
Library Library
------- -------
- Issue #15567: Fix NameError when running threading._test
- Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog - Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog
ended with '\'. Patch by Roger Serwy. ended with '\'. Patch by Roger Serwy.
......
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