Fix asyncio issue 235 (merge from 3.4).

This commit is contained in:
Guido van Rossum 2015-04-20 09:29:57 -07:00
commit f75d4a7ad0
3 changed files with 36 additions and 11 deletions

View file

@ -53,6 +53,8 @@ def __init__(self, maxsize=0, *, loop=None):
self._finished.set()
self._init(maxsize)
# These three are overridable in subclasses.
def _init(self, maxsize):
self._queue = collections.deque()
@ -61,6 +63,11 @@ def _get(self):
def _put(self, item):
self._queue.append(item)
# End of the overridable methods.
def __put_internal(self, item):
self._put(item)
self._unfinished_tasks += 1
self._finished.clear()
@ -132,7 +139,7 @@ def put(self, item):
'queue non-empty, why are getters waiting?')
getter = self._getters.popleft()
self._put(item)
self.__put_internal(item)
# getter cannot be cancelled, we just removed done getters
getter.set_result(self._get())
@ -144,7 +151,7 @@ def put(self, item):
yield from waiter
else:
self._put(item)
self.__put_internal(item)
def put_nowait(self, item):
"""Put an item into the queue without blocking.
@ -157,7 +164,7 @@ def put_nowait(self, item):
'queue non-empty, why are getters waiting?')
getter = self._getters.popleft()
self._put(item)
self.__put_internal(item)
# getter cannot be cancelled, we just removed done getters
getter.set_result(self._get())
@ -165,7 +172,7 @@ def put_nowait(self, item):
elif self._maxsize > 0 and self._maxsize <= self.qsize():
raise QueueFull
else:
self._put(item)
self.__put_internal(item)
@coroutine
def get(self):
@ -179,7 +186,7 @@ def get(self):
if self._putters:
assert self.full(), 'queue not full, why are putters waiting?'
item, putter = self._putters.popleft()
self._put(item)
self.__put_internal(item)
# When a getter runs and frees up a slot so this putter can
# run, we need to defer the put for a tick to ensure that
@ -206,7 +213,7 @@ def get_nowait(self):
if self._putters:
assert self.full(), 'queue not full, why are putters waiting?'
item, putter = self._putters.popleft()
self._put(item)
self.__put_internal(item)
# Wake putter on next tick.
# getter cannot be cancelled, we just removed done putters

View file

@ -408,14 +408,16 @@ def test_order(self):
self.assertEqual([1, 2, 3], items)
class QueueJoinTests(_QueueTestBase):
class _QueueJoinTestMixin:
q_class = None
def test_task_done_underflow(self):
q = asyncio.Queue(loop=self.loop)
q = self.q_class(loop=self.loop)
self.assertRaises(ValueError, q.task_done)
def test_task_done(self):
q = asyncio.Queue(loop=self.loop)
q = self.q_class(loop=self.loop)
for i in range(100):
q.put_nowait(i)
@ -452,7 +454,7 @@ def test():
self.loop.run_until_complete(asyncio.wait(tasks, loop=self.loop))
def test_join_empty_queue(self):
q = asyncio.Queue(loop=self.loop)
q = self.q_class(loop=self.loop)
# Test that a queue join()s successfully, and before anything else
# (done twice for insurance).
@ -465,12 +467,24 @@ def join():
self.loop.run_until_complete(join())
def test_format(self):
q = asyncio.Queue(loop=self.loop)
q = self.q_class(loop=self.loop)
self.assertEqual(q._format(), 'maxsize=0')
q._unfinished_tasks = 2
self.assertEqual(q._format(), 'maxsize=0 tasks=2')
class QueueJoinTests(_QueueJoinTestMixin, _QueueTestBase):
q_class = asyncio.Queue
class LifoQueueJoinTests(_QueueJoinTestMixin, _QueueTestBase):
q_class = asyncio.LifoQueue
class PriorityQueueJoinTests(_QueueJoinTestMixin, _QueueTestBase):
q_class = asyncio.PriorityQueue
if __name__ == '__main__':
unittest.main()

View file

@ -49,6 +49,10 @@ Core and Builtins
Library
-------
- Fix asyncio issue 235: LifoQueue and PriorityQueue's put didn't
increment unfinished tasks (this bug was introduced when
JoinableQueue was merged with Queue).
- Issue #23908: os functions now reject paths with embedded null character
on Windows instead of silently truncate them.