Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #27041: asyncio: Add loop.create_future method | Yury Selivanov | 2016-05-16 | 1 | -2/+2 |
| | |||||
* | Issue #25233: Rewrite the guts of Queue to be more understandable and correct. | Guido van Rossum | 2015-09-28 | 1 | -111/+41 |
| | |||||
* | Issue #23812: Fix getter-cancellation with many pending getters code path | Yury Selivanov | 2015-08-06 | 1 | -1/+1 |
| | |||||
* | Issue #23812: Fix asyncio.Queue.get() to avoid loosing items on cancellation. | Yury Selivanov | 2015-08-05 | 1 | -9/+38 |
| | | | | Patch by Gustavo J. A. M. Carneiro. | ||||
* | asyncio: sync with github | Victor Stinner | 2015-07-25 | 1 | -4/+6 |
| | | | | | | | | | * Fix ResourceWarning warnings in test_streams * Return True from StreamReader.eof_received() to fix http://bugs.python.org/issue24539 (but still needs a unittest). Add StreamReader.__repr__() for easy debugging. * remove unused imports * Issue #234: Drop JoinableQueue on Python 3.5+ | ||||
* | asyncio: sync with github asyncio | Victor Stinner | 2015-07-09 | 1 | -1/+1 |
| | | | | | * queues: get coroutine from asyncio.coroutines, not from asyncio.tasks * tets: replace tulip with asyncio in comments | ||||
* | Fix asyncio issue 235: Queue subclass bug caused by JoinableQueue merge. | Guido van Rossum | 2015-04-20 | 1 | -6/+13 |
| | |||||
* | asyncio, Tulip issue 220: Merge JoinableQueue with Queue. | Victor Stinner | 2015-02-17 | 1 | -59/+43 |
| | | | | | | | | | | | | | | 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 QueueFull | Victor Stinner | 2015-02-03 | 1 | -2/+6 |
| | |||||
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-09 | 1 | -0/+6 |
| | | | | | | | | * 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 docstrings | Victor Stinner | 2014-12-22 | 1 | -3/+7 |
| | |||||
* | Closes #21886, #21447: Fix a race condition in asyncio when setting the result | Victor Stinner | 2014-07-05 | 1 | -1/+1 |
| | | | | | 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 the | Victor Stinner | 2014-06-17 | 1 | -3/+3 |
| | | | | maximum size. Patch written by Vajrasky Kok. | ||||
* | asyncio: remove temporary aliases | Victor Stinner | 2014-01-27 | 1 | -6/+0 |
| | |||||
* | asyncio: Rename {Empty,Full} to {QueueEmpty,QueueFull} and no longer get ↵ | Guido van Rossum | 2014-01-26 | 1 | -9/+19 |
| | | | | them from queue.py. | ||||
* | asyncio: remove references to the Tulip project, rename Tulip to asyncio. | Victor Stinner | 2013-12-13 | 1 | -1/+1 |
| | | | | Patch written by Vajrasky Kok. | ||||
* | asyncio: Fix docstring of get_nowait(). | Guido van Rossum | 2013-11-25 | 1 | -1/+1 |
| | |||||
* | Initial checkin of asyncio package (== Tulip, == PEP 3156). | Guido van Rossum | 2013-10-17 | 1 | -0/+284 |