summaryrefslogtreecommitdiff
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
...
* - Issue #22841: Reject coroutines in asyncio add_signal_handler().Guido van Rossum2014-11-141-0/+12
* Python issue #22641: On Python 3.4 and newer, the default SSL context forVictor Stinner2014-11-052-11/+39
* Move loop attribute to _FlowControlMixinVictor Stinner2014-11-051-1/+2
* Reuse socket.socketpair() on Windows if availableVictor Stinner2014-10-141-0/+4
* run_forever() now consumes BaseException of the temporary taskVictor Stinner2014-10-111-1/+21
* test_tasks: Fix test_env_var_debug to use correct asyncio module (issue #207)Yury Selivanov2014-09-251-4/+11
* Improve canceled timer callback handles cleanup (CPython issue #22448)Yury Selivanov2014-09-252-10/+88
* Fix Handle and TimerHandle repr in debug modeVictor Stinner2014-09-171-4/+5
* Tulip issue #205: Fix a race condition in BaseSelectorEventLoop.sock_connect()Victor Stinner2014-08-311-22/+52
* Tulip issue #201: Fix a race condition in wait_for()Victor Stinner2014-08-281-0/+15
* Tulip issue #203: Add _FlowControlMixin.get_write_buffer_limits() methodVictor Stinner2014-08-261-0/+2
* Don't log expected errors in unit testsVictor Stinner2014-07-302-8/+14
* Fix unit tests in debug mode: mock a non-blocking socket for socket operationsVictor Stinner2014-07-302-5/+7
* Python issue 22063: socket operations (sock_recv, sock_sendall, sock_connect,Victor Stinner2014-07-301-16/+18
* Fix debug log in BaseEventLoop.create_connection(): get the socket object fromVictor Stinner2014-07-301-0/+3
* Python issue 22063: socket operations (socket,recv, sock_sendall, sock_connect,Victor Stinner2014-07-291-0/+18
* Use the new os.set_blocking() function of Python 3.5 if availableVictor Stinner2014-07-291-6/+6
* Remove workaround in test_futures, no more neededVictor Stinner2014-07-291-6/+0
* Enhance representation of Future and Future subclassesVictor Stinner2014-07-292-1/+16
* test_locks: close the temporary event loop and check the condition lockVictor Stinner2014-07-291-1/+4
* Accept optional lock object in Condition ctor (#198)Andrew Svetlov2014-07-261-0/+12
* test_subprocess: relax timings for slow builbotsVictor Stinner2014-07-251-2/+2
* tests: rename "f" to "fut"Victor Stinner2014-07-251-13/+13
* Tulip issue #195: Don't call UnregisterWait() twice if a _WaitHandleFuture isVictor Stinner2014-07-251-1/+11
* tests: relax timings for slow buildbotsVictor Stinner2014-07-241-4/+4
* Tulip issue #194: Don't use sys.getrefcount() in unit testsVictor Stinner2014-07-232-11/+10
* Fix test_stdin_broken_pipe(): drain() is not a coroutineVictor Stinner2014-07-211-2/+7
* Python issue 21247: Fix a race condition in test_send_signal() of asyncioVictor Stinner2014-07-171-4/+15
* Tulip issue 192, Python issue 21645: Rewrite signal handlingVictor Stinner2014-07-172-3/+3
* Fix test_stdin_broken_pipe(): drain() can also raise ConnectionResetErrorVictor Stinner2014-07-171-2/+2
* asyncio, tulip issue 190: Process.communicate() must ignore BrokenPipeErrorVictor Stinner2014-07-171-7/+20
* test_as_completed(): disable "slow callback" warningVictor Stinner2014-07-161-0/+2
* Python issue 21163: Fix "destroy pending task" warning in test_wait_errors()Victor Stinner2014-07-161-4/+7
* 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-142-17/+21
* Clean up some docstrings and comments. Remove unused unimplemented _read_from...Guido van Rossum2014-07-121-2/+0
* Tulip issue #183: log socket events in debug modeVictor Stinner2014-07-121-6/+6
* Fix ProactorEventLoop() in debug modeVictor Stinner2014-07-121-3/+4
* Tulip issue #182: Improve logs of BaseEventLoop._run_once()Victor Stinner2014-07-111-0/+1
* Fix some pyflakes warnings: remove unused importsVictor Stinner2014-07-113-7/+5
* Improve CoroWrapper: copy also the qualified name on Python 3.4, not only onVictor Stinner2014-07-111-7/+2
* CoroWrapper.__del__() now reuses repr(CoroWrapper) to log the "... was neverVictor Stinner2014-07-111-1/+1
* repr(Task) and repr(CoroWrapper) now also includes where these objects wereVictor Stinner2014-07-101-7/+42
* Python issues 21936, 21163: Fix sporadic failures ofVictor Stinner2014-07-101-0/+6
* Handle.cancel() now clears references to callback and argsVictor Stinner2014-07-101-12/+54
* Tulip issue #181: BaseEventLoop.create_datagram_endpoint() now waits untilVictor Stinner2014-07-081-0/+10
* tests: fix a warningVictor Stinner2014-07-081-0/+3
* Tulip issue #185: Add a create_task() method to event loopsVictor Stinner2014-07-082-0/+26
* fix typo in the name of a test functionVictor Stinner2014-07-071-2/+2