Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | asyncio: Move loop attribute to _FlowControlMixin | Victor Stinner | 2014-11-05 | 1 | -1/+2 |
| | | | | | | | | | Move the _loop attribute from the constructor of _SelectorTransport, _ProactorBasePipeTransport and _UnixWritePipeTransport classes to the constructor of the _FlowControlMixin class. Add also an assertion to explicit that the parent class must ensure that the loop is defined (not None) | ||||
* | asyncio, tulip issue 203: Add _FlowControlMixin.get_write_buffer_limits() method | Victor Stinner | 2014-08-25 | 1 | -0/+2 |
| | |||||
* | asyncio: Replace "unittest.mock" with "mock" in unit tests | Victor Stinner | 2014-02-26 | 1 | -3/+3 |
| | | | | | 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: WriteTransport.set_write_buffer_size to call _maybe_pause_protocol | Yury Selivanov | 2014-02-19 | 1 | -0/+23 |
| | |||||
* | Update asyncio from the Tulip project | Victor Stinner | 2014-01-25 | 1 | -7/+7 |
| | | | | | | | | | | | | | | | | 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 | ||||
* | asyncio: Improve default writelines(). | Guido van Rossum | 2013-12-03 | 1 | -2/+8 |
| | |||||
* | Make various asyncio test files individually runnable | Antoine Pitrou | 2013-10-20 | 1 | -0/+4 |
| | |||||
* | Rename Transport.pause/resume to pause_reading/pause_writing. Also relax ↵ | Guido van Rossum | 2013-10-18 | 1 | -2/+2 |
| | | | | timeout in test_call_later(). | ||||
* | Initial checkin of asyncio package (== Tulip, == PEP 3156). | Guido van Rossum | 2013-10-17 | 1 | -0/+55 |