cpython/Lib/asyncio
Victor Stinner 2dba23af71 asyncio: sync with Tulip
* _UnixSubprocessTransport: fix file mode of stdin. Open stdin in write mode,
  not in read mode
* Examples: close the event loop at exit
* More reliable CoroWrapper.__del__. If the constructor is interrupted by
  KeyboardInterrupt or the coroutine objet is destroyed lately, some the
  _source_traceback attribute doesn't exist anymore.
* repr(Task): include also the future the task is waiting for
2014-07-03 00:59:00 +02:00
..
__init__.py asyncio: sync with Tulip, add a new asyncio.coroutines module 2014-06-29 00:46:45 +02:00
base_events.py Issue #21163: BaseEventLoop.run_until_complete() and test_utils.run_briefly() 2014-06-30 14:51:04 +02:00
base_subprocess.py asyncio: sync with Tulip, add a new asyncio.coroutines module 2014-06-29 00:46:45 +02:00
constants.py asyncio: Pause accepting whenever accept() returns certain errors. Fixes asyncio issue #78. 2013-11-01 14:12:50 -07:00
coroutines.py asyncio: sync with Tulip 2014-07-03 00:59:00 +02:00
events.py asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and 2014-06-27 13:52:20 +02:00
futures.py asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and 2014-06-27 13:52:20 +02:00
locks.py asyncio: sync with Tulip, add a new asyncio.coroutines module 2014-06-29 00:46:45 +02:00
log.py Rename the logger to plain "logger". 2013-10-17 15:39:45 -07:00
proactor_events.py asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the 2014-06-23 01:02:37 +02:00
protocols.py asyncio: Fix spelling and typos. 2014-02-18 22:27:48 -05:00
queues.py Issue #21723: asyncio.Queue: support any type of number (ex: float) for the 2014-06-17 23:36:21 +02:00
selector_events.py asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the 2014-06-23 01:02:37 +02:00
streams.py asyncio: sync with Tulip, add a new asyncio.coroutines module 2014-06-29 00:46:45 +02:00
subprocess.py asyncio: sync with Tulip, add a new asyncio.coroutines module 2014-06-29 00:46:45 +02:00
tasks.py asyncio: sync with Tulip 2014-07-03 00:59:00 +02:00
test_utils.py Issue #21163: BaseEventLoop.run_until_complete() and test_utils.run_briefly() 2014-06-30 14:51:04 +02:00
transports.py asyncio: WriteTransport.set_write_buffer_size to call _maybe_pause_protocol 2014-02-19 11:10:52 -05:00
unix_events.py asyncio: sync with Tulip 2014-07-03 00:59:00 +02:00
windows_events.py asyncio: sync with Tulip, add a new asyncio.coroutines module 2014-06-29 00:46:45 +02:00
windows_utils.py Issue #21119: asyncio: Make sure that socketpair() close sockets on error 2014-06-04 00:12:28 +02:00