Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #28613: Fix get_event_loop() to return the current loop | Yury Selivanov | 2016-11-04 | 1 | -0/+1 |
| | | | | when called from coroutines or callbacks. | ||||
* | Use raw string for regexp | Guido van Rossum | 2016-09-10 | 1 | -1/+1 |
| | |||||
* | Issue #26050: Add asyncio.StreamReader.readuntil() method. | Yury Selivanov | 2016-01-11 | 1 | -1/+127 |
| | | | | Patch by Марк Коренберг. | ||||
* | asyncio/tests: Fix some ResourceWarnings | Yury Selivanov | 2015-12-17 | 1 | -6/+7 |
| | |||||
* | asyncio/tests: Fix deprecation warning | Yury Selivanov | 2015-12-17 | 1 | -1/+1 |
| | |||||
* | asyncio: Sync with github | Yury Selivanov | 2015-12-11 | 1 | -2/+2 |
| | |||||
* | Fix whitespace. | Guido van Rossum | 2015-10-19 | 1 | -1/+1 |
| | |||||
* | Issue #25441: asyncio: Raise error from drain() when socket is closed. | Guido van Rossum | 2015-10-19 | 1 | -0/+43 |
| | |||||
* | Fix StreamReader.__repr__ | Andrew Svetlov | 2015-09-29 | 1 | -0/+42 |
| | |||||
* | asyncio: sync with github | Victor Stinner | 2015-07-25 | 1 | -16/+12 |
| | | | | | | | | | * 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 | -3/+3 |
| | | | | | * queues: get coroutine from asyncio.coroutines, not from asyncio.tasks * tets: replace tulip with asyncio in comments | ||||
* | asyncio: pyflakes, remove unused import | Victor Stinner | 2015-01-21 | 1 | -9/+1 |
| | | | | tests: Remove unused function; inline another function | ||||
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-09 | 1 | -0/+19 |
| | | | | | | | * Tulip issue 184: FlowControlMixin constructor now get the event loop if the loop parameter is not set. Add unit tests to ensure that constructor of StreamReader and StreamReaderProtocol classes get the event loop. * Remove outdated TODO/XXX | ||||
* | asyncio: Truncate to 80 columns | Victor Stinner | 2015-01-08 | 1 | -2/+4 |
| | |||||
* | asyncio: Refactor tests: add a base TestCase class | Victor Stinner | 2014-06-17 | 1 | -2/+3 |
| | |||||
* | Fix test-order-dependend asyncio test failure caused by rev ↵ | Guido van Rossum | 2014-05-13 | 1 | -6/+9 |
| | | | | 909ea8cc86bbab92dbb6231668f403b7360f30fa. | ||||
* | asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if ↵ | Guido van Rossum | 2014-05-12 | 1 | -0/+36 |
| | | | | data exceeds buffer limit. | ||||
* | asyncio: Fix pyflakes warnings: remove unused variables and imports | Victor Stinner | 2014-02-26 | 1 | -1/+0 |
| | |||||
* | 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: Fix spelling and typos. | Yury Selivanov | 2014-02-19 | 1 | -1/+1 |
| | | | | Thanks to Vajrasky Kok for discovering some of them. | ||||
* | asyncio: Add support for UNIX Domain Sockets. | Yury Selivanov | 2014-02-18 | 1 | -39/+156 |
| | |||||
* | asyncio.streams.StreamReader: Add 'at_eof()' method | Yury Selivanov | 2014-02-06 | 1 | -0/+15 |
| | |||||
* | asyncio.streams: Use bytebuffer in StreamReader; Add assertion in feed_data | Yury Selivanov | 2014-02-05 | 1 | -27/+52 |
| | |||||
* | asyncio: Fix misc whitespace issues. | Guido van Rossum | 2014-01-31 | 1 | -2/+2 |
| | |||||
* | Update asyncio from the Tulip project | Victor Stinner | 2014-01-25 | 1 | -58/+60 |
| | | | | | | | | | | | | | | | | 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 Rossum | 2013-11-19 | 1 | -0/+66 |
| | |||||
* | Write flow control for asyncio (includes asyncio.streams overhaul). | Guido van Rossum | 2013-10-18 | 1 | -21/+21 |
| | |||||
* | Make asyncio tests run on Windows. | Guido van Rossum | 2013-10-17 | 1 | -1/+4 |
| | |||||
* | Initial checkin of asyncio package (== Tulip, == PEP 3156). | Guido van Rossum | 2013-10-17 | 1 | -0/+361 |