aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio/queues.py
Commit message (Collapse)AuthorAge
* Fix asyncio issue 235: Queue subclass bug caused by JoinableQueue merge.Guido van Rossum2015-04-20
|
* asyncio, Tulip issue 220: Merge JoinableQueue with Queue.Victor Stinner2015-02-17
| | | | | | | | | | | | | | Merge JoinableQueue with Queue. To more closely match the standard Queue, asyncio.Queue has "join" and "task_done". JoinableQueue is deleted. Docstring for Queue.join shouldn't mention threads. Restore JoinableQueue as a deprecated alias for Queue. To more closely match the standard Queue, asyncio.Queue has "join" and "task_done". JoinableQueue remains as a deprecated alias for Queue to avoid needlessly breaking too much code that depended on it. Patch written by A. Jesse Jiryu Davis <jesse@mongodb.com>.
* asyncio, Tulip issue 221: Fix doc of QueueEmpty and QueueFullVictor Stinner2015-02-03
|
* asyncio: sync with TulipVictor Stinner2015-01-09
| | | | | | | | * Document why set_result() calls are safe * Cleanup gather(). Use public methods instead of hacks to consume the exception of a future. * sock_connect(): pass directly the fd to _sock_connect_done instead of the socket.
* asyncio doc: update also Queue docstringsVictor Stinner2014-12-22
|
* Closes #21886, #21447: Fix a race condition in asyncio when setting the resultVictor Stinner2014-07-05
| | | | | of a Future with call_soon(). Add an helper, a private method, to set the result only if the future was not cancelled.
* Issue #21723: asyncio.Queue: support any type of number (ex: float) for theVictor Stinner2014-06-17
| | | | maximum size. Patch written by Vajrasky Kok.
* asyncio: remove temporary aliasesVictor Stinner2014-01-28
|
* asyncio: Rename {Empty,Full} to {QueueEmpty,QueueFull} and no longer get ↵Guido van Rossum2014-01-25
| | | | them from queue.py.
* asyncio: remove references to the Tulip project, rename Tulip to asyncio.Victor Stinner2013-12-13
| | | | Patch written by Vajrasky Kok.
* asyncio: Fix docstring of get_nowait().Guido van Rossum2013-11-24
|
* Initial checkin of asyncio package (== Tulip, == PEP 3156).Guido van Rossum2013-10-17