Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #21163, asyncio: Fix some "Task was destroyed but it is pending!" logs ↵ | Victor Stinner | 2014-06-25 | 1 | -10/+17 |
| | | | | in tests | ||||
* | asyncio: Refactor tests: add a base TestCase class | Victor Stinner | 2014-06-17 | 1 | -22/+10 |
| | |||||
* | Issue #21723: asyncio.Queue: support any type of number (ex: float) for the | Victor Stinner | 2014-06-17 | 1 | -0/+15 |
| | | | | maximum size. Patch written by Vajrasky Kok. | ||||
* | asyncio: Replace "unittest.mock" with "mock" in unit tests | Victor Stinner | 2014-02-26 | 1 | -2/+2 |
| | | | | | Use "from unittest import mock". It should simplify my work to merge new tests in Trollius, because Trollius uses "mock" backport for Python 2. | ||||
* | asyncio: Rename {Empty,Full} to {QueueEmpty,QueueFull} and no longer get ↵ | Guido van Rossum | 2014-01-26 | 1 | -2/+2 |
| | | | | them from queue.py. | ||||
* | Update asyncio from the Tulip project | Victor Stinner | 2014-01-25 | 1 | -85/+81 |
| | | | | | | | | | | | | | | | | Major changes: - StreamReader.readexactly() now raises an IncompleteReadError if the end of stream is reached before we received enough bytes, instead of returning less bytes than requested. - Unit tests use the main asyncio module instead of submodules like events - _UnixWritePipeTransport now also supports character devices, as _UnixReadPipeTransport. Patch written by Jonathan Slenders. - Export more symbols: BaseEventLoop, BaseProactorEventLoop, BaseSelectorEventLoop, Queue and Queue sublasses, Empty, Full | ||||
* | Initial checkin of asyncio package (== Tulip, == PEP 3156). | Guido van Rossum | 2013-10-17 | 1 | -0/+470 |