cpython/Lib/asyncio
Victor Stinner df29c4a83d asyncio: repr(Task) now also contains the line number even if the coroutine is
done: use the first line number of the code object instead of the current line
number of the generator frame.

The name of the coroutine is not enough because many coroutines may have the
same name. It's a common case in asyncio tests for example.
2014-06-24 22:57:14 +02:00
..
__init__.py Issue #20400: Merge Tulip into Python: add the new asyncio.subprocess module 2014-02-01 22:49:59 +01:00
base_events.py asyncio: Fix BaseEventLoop._assert_is_current_event_loop(): get_event_loop() 2014-06-23 15:14:13 +02:00
base_subprocess.py Issue #20400: Merge Tulip into Python: add the new asyncio.subprocess module 2014-02-01 22:49:59 +01:00
constants.py
events.py asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task) 2014-06-12 18:39:26 +02:00
futures.py asyncio: Log an error if a Task is destroyed while it is still pending 2014-06-24 22:37:53 +02:00
locks.py
log.py
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: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if data exceeds buffer limit. 2014-05-12 10:04:37 -07:00
subprocess.py asyncio.subprocess: Fix a race condition in communicate() 2014-02-20 10:12:59 +01:00
tasks.py asyncio: repr(Task) now also contains the line number even if the coroutine is 2014-06-24 22:57:14 +02:00
test_utils.py asyncio: Refactor tests: add a base TestCase class 2014-06-18 01:36:32 +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, Tulip issue 171: BaseEventLoop.close() now raises an exception if the 2014-06-23 01:02:37 +02:00
windows_events.py asyncio/windows_events.py: use more revelant names to overlapped callbacks 2014-02-26 17:35:30 +01:00
windows_utils.py Issue #21119: asyncio: Make sure that socketpair() close sockets on error 2014-06-04 00:12:28 +02:00