summaryrefslogtreecommitdiff
path: root/tests/test_selector_events.py
Commit message (Expand)AuthorAgeFilesLines
* Fix _SelectorSslTransport.close()Victor Stinner2015-01-291-1/+14
* Fix _SelectorSocketTransport constructorVictor Stinner2015-01-291-5/+11
* Close transports in testsVictor Stinner2015-01-151-0/+2
* Python issue #23243: Close explicitly transports in testsVictor Stinner2015-01-151-144/+118
* Python issue #23243: Close explicitly event loops in testsVictor Stinner2015-01-151-1/+15
* Tests: explicitly close event loops and transportsVictor Stinner2015-01-141-0/+1
* Python issue #23197: On SSL handshake failure, check if the waiter is cancelledVictor Stinner2015-01-141-4/+16
* Python issue #22560: New SSL implementation based on ssl.MemoryBIOVictor Stinner2015-01-141-1/+5
* Fix pyflakes warnings: remove unused imports and variablesVictor Stinner2014-12-191-3/+0
* Python issue #22921: Don't require OpenSSL SNI to pass hostname to sslBenjamin Peterson2014-11-251-1/+1
* Tulip issue #205: Fix a race condition in BaseSelectorEventLoop.sock_connect()Victor Stinner2014-08-311-22/+52
* Don't log expected errors in unit testsVictor Stinner2014-07-301-5/+9
* Fix unit tests in debug mode: mock a non-blocking socket for socket operationsVictor Stinner2014-07-301-5/+5
* Tulip issue #194: Don't use sys.getrefcount() in unit testsVictor Stinner2014-07-231-2/+2
* Fix _on_handshake() testsVictor Stinner2014-07-161-2/+4
* test_selector_events: remove duplicate call to _on_handshake() methodVictor Stinner2014-07-151-5/+3
* tests: make quiet the logs of SSL handshake failures when running tests inVictor Stinner2014-07-141-7/+8
* Tulip issue #183: log socket events in debug modeVictor Stinner2014-07-121-6/+6
* Enable the debug mode of event loops when the PYTHONASYNCIODEBUG environmentVictor Stinner2014-06-231-2/+0
* Fix pyflakes errorsVictor Stinner2014-06-181-4/+1
* Refactor tests: add a base TestCase classVictor Stinner2014-06-181-10/+11
* Tulip issue #169, Python issue #21326: Add BaseEventLoop.is_closed() methodVictor Stinner2014-06-041-3/+14
* Fix for raising exception not derived from BaseException in _SelectorSslTrans...Andrew Svetlov2014-05-271-0/+4
* Fix the second half of bugs.python.org/issue21447: race in _write_to_self().Guido van Rossum2014-05-061-2/+3
* Fix pyflakes warnings: remove unused variables and importsVictor Stinner2014-02-261-2/+1
* Replace "unittest.mock" with "mock" in unit testsVictor Stinner2014-02-261-135/+135
* Issue #139: Improve error messages on "fatal errors"Victor Stinner2014-02-191-10/+26
* Add new event loop exception handling API (closes issue #80).Yury Selivanov2014-02-181-5/+15
* Add support for UNIX Domain Sockets. Closes issue #81.Yury Selivanov2014-02-181-1/+2
* Issue #126: call_soon(), call_soon_threadsafe(), call_later(), call_at() andVictor Stinner2014-02-111-4/+5
* Remove scories of resolution/granularityVictor Stinner2014-02-091-1/+0
* Don't export BaseEventLoop, BaseSelectorEventLoop nor BaseProactorEventLoopVictor Stinner2014-01-251-1/+2
* Export more symbols: BaseEventLoop, BaseProactorEventLoop,Victor Stinner2014-01-251-2/+1
* Add a granularity attribute to BaseEventLoop: maximum between the resolution ofVictor Stinner2014-01-251-1/+3
* Unit tests: pick symbols from the asyncio moduleVictor Stinner2014-01-241-5/+4
* Unit tests use the main asyncio module instead of submodules like eventsVictor Stinner2014-01-241-32/+32
* Replace some asserts with proper exceptions.Guido van Rossum2013-11-271-4/+5
* Support bytearray/memoryview arguments to write(), sendto(). Fixes issue 27.Guido van Rossum2013-11-271-0/+105
* Experimental bytearray buffer.Guido van Rossum2013-11-261-43/+46
* Generalized error handling callback for DatastoreProtocol.Guido van Rossum2013-11-151-10/+23
* Better-looking errors when ssl module cannot be imported. Fixes issue #77. Af...Guido van Rossum2013-11-011-0/+20
* refactor ssl transport ready loopNikolay Kim2013-10-311-51/+83
* Make various asyncio test files individually runnable.Guido van Rossum2013-10-201-0/+4
* MergeGuido van Rossum2013-10-181-6/+6
* MergeGuido van Rossum2013-10-171-6/+6
* Merge eof_received() change.Guido van Rossum2013-10-151-0/+12
* Rename tests from foo_test.py to test_foo.py, to match stdlib preference.Guido van Rossum2013-10-141-0/+1473