summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Python issue #23243: On Python 3.4 and newer, emit a ResourceWarning when anHEADmasterVictor Stinner2015-01-299-6/+101
* Python issue #23243: test_sslproto: Close explicitly transportsVictor Stinner2015-01-291-4/+3
* Document Protocol state machineVictor Stinner2015-01-291-0/+5
* Fix BaseSelectorEventLoop._accept_connection()Victor Stinner2015-01-292-19/+62
* Fix _UnixReadPipeTransport and _UnixWritePipeTransportVictor Stinner2015-01-292-24/+22
* Cleanup gather(): use cancelled() method instead of using private FutureVictor Stinner2015-01-291-1/+1
* Fix _SelectorSslTransport.close()Victor Stinner2015-01-292-2/+20
* _SelectorTransport constructor: extra parameter is now optionalVictor Stinner2015-01-291-1/+1
* Fix _SelectorDatagramTransport constructorVictor Stinner2015-01-291-1/+3
* BaseSubprocessTransport._kill_wait() now also call close()Victor Stinner2015-01-291-0/+3
* Fix _SelectorSocketTransport constructorVictor Stinner2015-01-292-6/+14
* SSL transports now clear their reference to the waiterVictor Stinner2015-01-294-21/+32
* Fix SSLProtocol.eof_received()Victor Stinner2015-01-282-11/+33
* Remove unused SSLProtocol._closing attributeVictor Stinner2015-01-281-1/+0
* test_sslproto: skip test if ssl module is missingVictor Stinner2015-01-271-0/+5
* Python issue #23208: Don't use the traceback of the current handle if weVictor Stinner2015-01-261-1/+2
* _overlapped.ConnectPipe(): release the GILVictor Stinner2015-01-261-0/+3
* Tulip issue #204: Fix IocpProactor.recv()Victor Stinner2015-01-262-9/+15
* Python issue #23095: Fix _WaitHandleFuture.cancel()Victor Stinner2015-01-261-20/+17
* Python issue #23293: Rewrite IocpProactor.connect_pipe() as a coroutineVictor Stinner2015-01-262-21/+31
* PipeHandle.fileno() now raises an exception if the pipe is closedVictor Stinner2015-01-261-0/+2
* Fix ProactorEventLoop.start_serving_pipe()Victor Stinner2015-01-261-1/+13
* Python issue #23208: Add BaseEventLoop._current_handleVictor Stinner2015-01-261-6/+19
* Tulip issue #219: Fix comments in simple_tcp_server.py exampleVictor Stinner2015-01-231-2/+2
* Python issue #23293: Cleanup IocpProactor.close()Victor Stinner2015-01-231-6/+1
* Close transports on errorVictor Stinner2015-01-231-3/+21
* Tulip issue #204: Fix IocpProactor.accept_pipe()Victor Stinner2015-01-222-26/+19
* Python issue #23293: Rewrite IocpProactor.connect_pipe()Victor Stinner2015-01-222-110/+48
* release.py: Fix helpVictor Stinner2015-01-221-1/+2
* IocpProactor.close(): don't cancel futures which are already cancelledVictor Stinner2015-01-221-3/+7
* Python issue #23095: IocpProactor.close() must not cancel pendingVictor Stinner2015-01-221-0/+6
* BaseEventLoop._create_connection_transport() catchs any exception, not onlyVictor Stinner2015-01-221-1/+1
* Python issue #23095: Rewrite _WaitHandleFuture.cancel()Victor Stinner2015-01-212-34/+159
* test_selectors: use asyncio.test_support if test.support is missingVictor Stinner2015-01-211-1/+4
* pyflakes: remove unused importVictor Stinner2015-01-161-1/+0
* Enhance BaseProactorEventLoop._loop_self_reading()Victor Stinner2015-01-162-5/+12
* tests: Remove unused function; inline another functionVictor Stinner2015-01-161-9/+1
* release.py: fix typoVictor Stinner2015-01-161-3/+3
* runtests.py: rephrase the message mentionning randomization of testsVictor Stinner2015-01-161-1/+1
* tox.ini: fix commentVictor Stinner2015-01-161-1/+2
* Cleanup BaseEventLoop._create_connection_transport()Victor Stinner2015-01-161-1/+1
* Issue #22685: Fix test_pause_reading() of test_subprocessVictor Stinner2015-01-151-2/+12
* Backout changeset 3a06020af8cfVictor Stinner2015-01-151-21/+4
* Python issue #23219: cancelling wait_for() now cancels the taskVictor Stinner2015-01-152-4/+35
* Close transports in testsVictor Stinner2015-01-154-3/+15
* Close the transport on subprocess creation failureVictor Stinner2015-01-152-2/+11
* Fix _ProactorBasePipeTransport.close()Victor Stinner2015-01-151-1/+3
* Fix _ProactorBasePipeTransport.__repr__()Victor Stinner2015-01-151-3/+3
* Python issue #23243: Close explicitly transports in testsVictor Stinner2015-01-153-277/+226
* Python issue #23243: Close explicitly event loops in testsVictor Stinner2015-01-153-1/+20