aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_asyncio/test_streams.py
Commit message (Collapse)AuthorAge
* Fix test-order-dependend asyncio test failure caused by rev ↵Guido van Rossum2014-05-13
| | | | 909ea8cc86bbab92dbb6231668f403b7360f30fa.
* asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if ↵Guido van Rossum2014-05-12
| | | | data exceeds buffer limit.
* asyncio: Fix pyflakes warnings: remove unused variables and importsVictor Stinner2014-02-26
|
* asyncio: Replace "unittest.mock" with "mock" in unit testsVictor Stinner2014-02-26
| | | | | 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: Fix spelling and typos.Yury Selivanov2014-02-18
| | | | Thanks to Vajrasky Kok for discovering some of them.
* asyncio: Add support for UNIX Domain Sockets.Yury Selivanov2014-02-18
|
* asyncio.streams.StreamReader: Add 'at_eof()' methodYury Selivanov2014-02-06
|
* asyncio.streams: Use bytebuffer in StreamReader; Add assertion in feed_dataYury Selivanov2014-02-05
|
* asyncio: Fix misc whitespace issues.Guido van Rossum2014-01-30
|
* Update asyncio from the Tulip projectVictor Stinner2014-01-25
| | | | | | | | | | | | | | | | 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: Add streams.start_server(), by Gustavo Carneiro.Guido van Rossum2013-11-19
|
* Write flow control for asyncio (includes asyncio.streams overhaul).Guido van Rossum2013-10-18
|
* Make asyncio tests run on Windows.Guido van Rossum2013-10-17
|
* Initial checkin of asyncio package (== Tulip, == PEP 3156).Guido van Rossum2013-10-17