This commit is contained in:
Raymond Hettinger 2013-07-13 22:48:49 -07:00
commit 468bcaffd6
3 changed files with 5 additions and 2 deletions

View file

@ -164,4 +164,4 @@ def queue(self):
# the actual order they would be retrieved.
with self._lock:
events = self._queue[:]
return map(heapq.heappop, [events]*len(events))
return list(map(heapq.heappop, [events]*len(events)))

View file

@ -172,7 +172,7 @@ def test_queue(self):
e3 = scheduler.enterabs(now + 0.03, 1, fun)
# queue property is supposed to return an order list of
# upcoming events
self.assertEqual(list(scheduler.queue), [e1, e2, e3, e4, e5])
self.assertEqual(scheduler.queue, [e1, e2, e3, e4, e5])
def test_args_kwargs(self):
flag = []

View file

@ -157,6 +157,9 @@ Library
- Issue #18431: The new email header parser now decodes RFC2047 encoded words
in structured headers.
- Issue #18432: The sched module's queue method was incorrectly returning
an iterator instead of a list.
- Issue #18044: The new email header parser was mis-parsing encoded words where
an encoded character immediately followed the '?' that follows the CTE
character, resulting in a decoding failure. They are now decoded correctly.