summaryrefslogtreecommitdiff
path: root/Lib/test/test_asyncio/test_selector_events.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #28613: Fix get_event_loop() to return the current loopYury Selivanov2016-11-041-0/+5
* Issue #28369: Raise an error when transport's FD is used with add_readerYury Selivanov2016-10-051-32/+32
* Issue #28283: Remove flaky test test_sock_connect_sock_write_race againBerker Peksag2016-10-011-86/+0
* Misc asyncio improvements from upstreamGuido van Rossum2016-09-301-0/+86
* Issue #28283: Remove flaky test test_sock_connect_sock_write_raceBerker Peksag2016-09-281-86/+0
* test_asynico: fix test_sock_connect_sock_write_race()Victor Stinner2016-09-211-1/+1
* Issue #28176: Increase timeout for test_sock_connect_sock_write_raceBerker Peksag2016-09-181-1/+1
* Issue #28176: Fix callbacks race in asyncio.SelectorLoop.sock_connect.Yury Selivanov2016-09-151-23/+101
* Issue #27906: Fix socket accept exhaustion during high TCP traffic.Yury Selivanov2016-09-151-0/+14
* asyncio: Use socket specs for getaddrinfo() in sock_connect()Yury Selivanov2016-06-281-0/+11
* Issue #27223: aio: Fix _read_ready and _write_ready to respect _conn_lost.Yury Selivanov2016-06-111-17/+13
* Issue #27136: Fix DNS static resolution; don't use it in getaddrinfoYury Selivanov2016-06-081-5/+15
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* asyncio: Add Transport.is_closing()Yury Selivanov2015-11-161-3/+3
* asyncio: sync with github asyncioVictor Stinner2015-07-091-1/+1
* asyncio: Fix _SelectorTransport.__repr__() if the event loop is closedVictor Stinner2015-03-271-0/+5
* asyncio: sync with TulipVictor Stinner2015-01-291-1/+14
* asyncio: Fix _SelectorSocketTransport constructorVictor Stinner2015-01-291-5/+11
* asyncio: Close transports in testsVictor Stinner2015-01-151-0/+2
* Issue #23243: Close explicitly transports in asyncio testsVictor Stinner2015-01-151-144/+118
* Issue #23243: Close explicitly event loops in asyncio testsVictor Stinner2015-01-151-1/+15
* asyncio: sync with TulipVictor Stinner2015-01-151-0/+1
* Issue #23197, asyncio: On SSL handshake failure, check if the waiter isVictor Stinner2015-01-141-4/+16
* Issue #22560: New SSL implementation based on ssl.MemoryBIOVictor Stinner2015-01-141-1/+5
* asyncio: sync with TulipVictor Stinner2014-12-261-3/+0
* don't require OpenSSL SNI to pass hostname to ssl functions (#22921)Benjamin Peterson2014-11-231-1/+1
* asyncio, Tulip issue 205: Fix a race condition in BaseSelectorEventLoop.sock_...Victor Stinner2014-08-311-22/+52
* asyncio: sync with TulipVictor Stinner2014-08-251-10/+14
* asyncio: sync with TulipVictor Stinner2014-07-231-2/+2
* asyncio: test_selector_events: remove duplicate call to _on_handshake() methodVictor Stinner2014-07-161-3/+3
* asyncio tests: make quiet the logs of SSL handshake failures when running testsVictor Stinner2014-07-141-7/+8
* asyncio: sync with TulipVictor Stinner2014-07-121-6/+6
* asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUGVictor Stinner2014-06-231-2/+0
* asyncio: Fix pyflakes errorsVictor Stinner2014-06-181-4/+1
* asyncio: Refactor tests: add a base TestCase classVictor Stinner2014-06-181-10/+11
* Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoopVictor Stinner2014-06-101-3/+14
* Fix for raising exception not derived from BaseException in _SelectorSslTrans...Andrew Svetlov2014-05-271-0/+4
* asyncio: Fix the second half of issue #21447: race in _write_to_self().Guido van Rossum2014-05-061-2/+3
* asyncio: Fix pyflakes warnings: remove unused variables and importsVictor Stinner2014-02-261-2/+1
* asyncio: Replace "unittest.mock" with "mock" in unit testsVictor Stinner2014-02-261-135/+135
* asyncio, Tulip issue 139: Improve error messages on "fatal errors"Victor Stinner2014-02-191-10/+26
* asyncio: New error handling API. Issue #20681.Yury Selivanov2014-02-181-5/+15
* asyncio: Add support for UNIX Domain Sockets.Yury Selivanov2014-02-181-1/+2
* asyncio, Tulip issue 126: call_soon(), call_soon_threadsafe(), call_later(),Victor Stinner2014-02-111-4/+5
* asyncio tests: Remove scories of resolution/granularityVictor Stinner2014-02-091-1/+0
* asyncio: Don't export BaseEventLoop, BaseSelectorEventLoop norVictor Stinner2014-01-251-1/+2
* Update asyncio from the Tulip projectVictor Stinner2014-01-251-39/+37
* Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximumVictor Stinner2014-01-251-1/+3
* asyncio: Change write buffer use to avoid O(N**2). Make write()/sendto() acce...Guido van Rossum2013-11-271-47/+156
* asyncio: Replace connection_refused() with error_received().Guido van Rossum2013-11-151-10/+23