]> granicus.if.org Git - python/commit
asyncio: sync with Tulip
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 29 Jan 2015 13:15:19 +0000 (14:15 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Thu, 29 Jan 2015 13:15:19 +0000 (14:15 +0100)
commit2934262fd36c35843c01b96657047625ce2e3cf6
tree6e23f70391742924251faa7bf82092532951411d
parent54a231d5397bda24257f253eb1aaabf1b741a0b5
asyncio: sync with Tulip

* Cleanup gather(): use cancelled() method instead of using private Future
  attribute
* Fix _UnixReadPipeTransport and _UnixWritePipeTransport. Only start reading
  when connection_made() has been called.
* Issue #23333: Fix BaseSelectorEventLoop._accept_connection(). Close the
  transport on error. In debug mode, log errors using call_exception_handler()
Lib/asyncio/selector_events.py
Lib/asyncio/tasks.py
Lib/asyncio/unix_events.py
Lib/test/test_asyncio/test_events.py
Lib/test/test_asyncio/test_unix_events.py