summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * SSLProtocol: set the _transport attribute in the constructorVictor Stinner2015-01-151-0/+1
| * Python issue #23242: SubprocessStreamProtocol now closes the subprocessVictor Stinner2015-01-151-1/+4
| * Python issue #22560: Fix SSLProtocol._on_handshake_complete()Victor Stinner2015-01-151-2/+6
| * StreamWriter: close() now clears the reference to the transportVictor Stinner2015-01-151-4/+21
| * PipeHandle now uses None instead of -1 for a closed handleVictor Stinner2015-01-141-5/+5
| * Fix test_events on Python older than 3.5Victor Stinner2015-01-141-0/+17
| * Fix BaseEventLoop._create_connection_transport()Victor Stinner2015-01-141-1/+6
| * _ProactorBasePipeTransport now sets _sock to None when the transport is closedVictor Stinner2015-01-141-0/+1
| * Fix BaseSubprocessTransport.close()Victor Stinner2015-01-141-0/+2
| * TestLoop.close() now calls the close() method of the parent class (BaseEventL...Victor Stinner2015-01-141-0/+1
| * cleanup BaseSelectorEventLoopVictor Stinner2015-01-141-2/+3
| * Fix BaseSubprocessTransport._kill_wait()Victor Stinner2015-01-141-1/+1
| * Tests: explicitly close event loops and transportsVictor Stinner2015-01-145-0/+9
| * UNIX pipe transports: add closed/closing in repr()Victor Stinner2015-01-141-2/+12
| * Python issue #23197: On SSL handshake failure on matching hostname, check ifVictor Stinner2015-01-141-1/+2
| * Python issue #23197: On SSL handshake failure, check if the waiter is cancelledVictor Stinner2015-01-144-6/+63
| * Cleanup sslproto.pyVictor Stinner2015-01-141-1/+2
| * Python issue #23173: Fix SubprocessStreamProtocol.connection_made() to handleVictor Stinner2015-01-142-1/+39
| * Python issue #23173: If an exception is raised during the creation of aVictor Stinner2015-01-142-26/+63
| * Python issue #23198: Reactor StreamReaderVictor Stinner2015-01-141-25/+22
| * Python issue #22560: New SSL implementation based on ssl.MemoryBIOVictor Stinner2015-01-146-38/+747
| * Tulip issue 184: Fix test_pipe() on WindowsVictor Stinner2015-01-131-1/+2
| * Python issue #22922: Fix ProactorEventLoop.close()Victor Stinner2015-01-131-1/+7
| * Python issue #23209, #23225: selectors.BaseSelector.get_key() now raises aVictor Stinner2015-01-132-4/+10
| * Python issue #23209: Revert change on selectors, test_selectors failed.Victor Stinner2015-01-091-1/+0
| * Python issue #23209: Break some reference cycles in asyncio. Patch written byVictor Stinner2015-01-093-1/+3
| * Make the release.py program executable on UNIXVictor Stinner2015-01-091-0/+1
| * tox.ini: add py3_release env to run tests in release modeVictor Stinner2015-01-091-1/+7
| * Tulip issue #184: FlowControlMixin constructor now get the event loop if theVictor Stinner2015-01-092-3/+26
| * Remove outdated TODO/XXXVictor Stinner2015-01-094-8/+3
| * tox.ini: add py35 envVictor Stinner2015-01-091-1/+4
| * Replace test_selectors.py with the file of Python 3.5 adapted for asyncio andVictor Stinner2015-01-091-161/+395
| * Document why set_result() calls are safeVictor Stinner2015-01-091-0/+6
| * Cleanup gather()Victor Stinner2015-01-091-4/+7
| * sock_connect(): pass directly the fd to _sock_connect_done instead of the socketVictor Stinner2015-01-091-3/+3
| * selectors: truncate to 80 charactersVictor Stinner2015-01-091-1/+2
| * Truncate to 80 columnsVictor Stinner2015-01-0914-43/+75
| * _make_ssl_transport: make the waiter parameter optionalVictor Stinner2015-01-082-3/+3
| * Python issue #23140: Simplify the unit testVictor Stinner2015-01-061-8/+6
| * Issue #23140: Fix cancellation of Process.wait(). Check the state of the waiterVictor Stinner2015-01-062-1/+30
| * Python issue #23046: Expose the BaseEventLoop class in the asyncio namespaceVictor Stinner2015-01-062-2/+4
| * fix typoVictor Stinner2014-12-261-1/+1
| * MANIFEST.in: add run_aiotest.pyVictor Stinner2014-12-261-1/+1
| * CPython doesn't have asyncio.test_supportVictor Stinner2014-12-266-24/+46
| * Python issue #22926: In debug mode, call_soon(), call_at() and call_later()Victor Stinner2014-12-266-62/+89
| * Fix doc of get and put methods of QueueVictor Stinner2014-12-261-3/+7
| * release.py: fix the message of publish_wheel()Victor Stinner2014-12-201-1/+1
| * release.py register now upload for realVictor Stinner2014-12-191-3/+2
| * MANIFEST.in: add release.pyVictor Stinner2014-12-191-1/+1
| * Port release.py to Python 2 and to UNIXVictor Stinner2014-12-191-57/+114