cpython/Lib/asyncio
Victor Stinner 8dffc456d7 Update asyncio from the Tulip project
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
2014-01-25 15:32:06 +01:00
..
__init__.py Update asyncio from the Tulip project 2014-01-25 15:32:06 +01:00
base_events.py Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximum 2014-01-25 15:01:33 +01:00
base_subprocess.py asyncio: Add new file (forgotten). 2013-10-30 14:56:49 -07:00
constants.py asyncio: Pause accepting whenever accept() returns certain errors. Fixes asyncio issue #78. 2013-11-01 14:12:50 -07:00
events.py Fix typo in asyncio.AbstractServer documentation 2013-12-03 18:23:52 +01:00
futures.py Issue #19967: Defer the formating of the traceback in asyncio.Future destructor 2013-12-21 00:19:33 +01:00
locks.py asyncio: Don't special-case GeneratorExit in Condition.wait(). 2014-01-10 13:25:38 -08:00
log.py
proactor_events.py Update asyncio from the Tulip project 2014-01-25 15:32:06 +01:00
protocols.py asyncio: Export all abstract protocol and transport classes. Fixes issue #20029. 2013-12-20 14:16:21 -08:00
queues.py asyncio: remove references to the Tulip project, rename Tulip to asyncio. 2013-12-13 10:57:04 +01:00
selector_events.py Update asyncio from the Tulip project 2014-01-25 15:32:06 +01:00
streams.py Update asyncio from the Tulip project 2014-01-25 15:32:06 +01:00
tasks.py asyncio: wait_for() now cancels the future on timeout. Patch written by Gustavo 2014-01-23 17:40:59 +01:00
test_utils.py Fix asyncio tests: define resolution 2014-01-25 15:31:06 +01:00
transports.py asyncio: make PY34 symbol private (rename it to _PY34) 2014-01-02 18:41:34 +01:00
unix_events.py Update asyncio from the Tulip project 2014-01-25 15:32:06 +01:00
windows_events.py Cleanup properly proactor event loop 2014-01-11 00:03:21 +01:00
windows_utils.py asyncio: Various style nits. 2013-11-01 14:20:55 -07:00