| Commit message (Expand) | Author | Age | Files | Lines |
* | asyncio: pyflakes, remove unused import | Victor Stinner | 2015-01-21 | 1 | -9/+1 |
|
|
* | asyncio: Enhance BaseProactorEventLoop._loop_self_reading() | Victor Stinner | 2015-01-21 | 1 | -2/+3 |
|
|
* | Issue #22685: Fix test_pause_reading() of asyncio/test_subprocess | Victor Stinner | 2015-01-15 | 1 | -2/+12 |
|
|
* | Closes #23219: cancelling asyncio.wait_for() now cancels the task | Victor Stinner | 2015-01-15 | 1 | -0/+27 |
|
|
* | asyncio: Close transports in tests | Victor Stinner | 2015-01-15 | 4 | -3/+15 |
|
|
* | Issue #23243: Close explicitly transports in asyncio tests | Victor Stinner | 2015-01-15 | 3 | -277/+226 |
|
|
* | Issue #23243: Close explicitly event loops in asyncio tests | Victor Stinner | 2015-01-15 | 3 | -1/+20 |
|
|
* | Issue #23243: Fix asyncio._UnixWritePipeTransport.close() | Victor Stinner | 2015-01-15 | 1 | -0/+3 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-14 | 5 | -0/+26 |
|
|
* | Issue #23197, asyncio: On SSL handshake failure, check if the waiter is | Victor Stinner | 2015-01-14 | 2 | -4/+61 |
|
|
* | Python issue #23173: sync with Tulip | Victor Stinner | 2015-01-14 | 1 | -0/+36 |
|
|
* | Issue #22560: New SSL implementation based on ssl.MemoryBIO | Victor Stinner | 2015-01-13 | 2 | -11/+53 |
|
|
* | Tulip issue 184: Fix test_pipe() on Windows | Victor Stinner | 2015-01-13 | 1 | -1/+2 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-09 | 1 | -0/+19 |
|
|
* | asyncio: Truncate to 80 columns | Victor Stinner | 2015-01-08 | 5 | -18/+37 |
|
|
* | Issue #23140, asyncio: Simplify the unit test | Victor Stinner | 2015-01-06 | 1 | -8/+6 |
|
|
* | Issue #23140, asyncio: Fix cancellation of Process.wait(). Check the state of | Victor Stinner | 2015-01-06 | 1 | -0/+28 |
|
|
* | Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods of | Victor Stinner | 2014-12-26 | 3 | -39/+66 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-12-26 | 8 | -22/+16 |
|
|
* | asyncio: IocpProactor.wait_for_handle() test now also checks the result of the | Victor Stinner | 2014-12-19 | 1 | -2/+6 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-12-18 | 6 | -16/+37 |
|
|
* | Issue #23074: asyncio.get_event_loop() now raises an exception if the thread | Victor Stinner | 2014-12-18 | 1 | -2/+2 |
|
|
* | asyncio, tulip issue 209: Fix subprocess for close_fds=False on Python 3.3 | Victor Stinner | 2014-12-11 | 1 | -0/+21 |
|
|
* | asyncio, tulip issue 202: Add unit test of pause/resume writing for proactor | Victor Stinner | 2014-12-11 | 1 | -0/+82 |
|
|
* | Closes #22429, asyncio: Fix EventLoop.run_until_complete(), don't stop the | Victor Stinner | 2014-12-05 | 1 | -0/+25 |
|
|
* | Closes #22922: More EventLoop methods fail if the loop is closed. Initial patch | Victor Stinner | 2014-12-04 | 1 | -1/+34 |
|
|
* | Issue #22685: Fix test_pause_reading() of asyncio test_subprocess | Victor Stinner | 2014-12-04 | 1 | -0/+2 |
|
|
* | Removed duplicated words in in comments and docs. | Serhiy Storchaka | 2014-12-01 | 1 | -1/+1 |
|
|
* | Issue #22685: Debug test_pause_reading() on FreeBSD | Victor Stinner | 2014-11-28 | 1 | -7/+10 |
|
|
* | Closes #22685, asyncio: Set the transport of stdout and stderr StreamReader | Victor Stinner | 2014-11-25 | 1 | -0/+32 |
|
|
* | don't require OpenSSL SNI to pass hostname to ssl functions (#22921) | Benjamin Peterson | 2014-11-23 | 2 | -9/+1 |
|
|
* | asyncio: Coroutine objects are now rejected with a TypeError by the following | Victor Stinner | 2014-11-20 | 2 | -15/+25 |
|
|
* | asyncio, test_events: Ignore the "SSL handshake failed" log in debug mode | Victor Stinner | 2014-11-20 | 1 | -1/+3 |
|
|
* | asyncio: Fix formatting of the "Future exception was never retrieved" in | Victor Stinner | 2014-11-20 | 2 | -39/+60 |
|
|
* | - Issue #22841: Reject coroutines in asyncio add_signal_handler(). | Guido van Rossum | 2014-11-14 | 1 | -0/+12 |
|
|
* | Closes #22784: fix test_asyncio when the ssl module isn't available | Antoine Pitrou | 2014-11-05 | 1 | -8/+9 |
|
|
* | asyncio: Move loop attribute to _FlowControlMixin | Victor Stinner | 2014-11-05 | 1 | -1/+2 |
|
|
* | Issue #22186: Fix typos in Lib/. | Berker Peksag | 2014-10-19 | 1 | -1/+1 |
|
|
* | Issue #22641: In asyncio, the default SSL context for client connections is n... | Antoine Pitrou | 2014-10-15 | 1 | -10/+38 |
|
|
* | Issue #18643: asyncio.windows_utils now reuse socket.socketpair() on Windows if | Victor Stinner | 2014-10-14 | 1 | -0/+4 |
|
|
* | Issue #22601: run_forever() now consumes BaseException of the temporary task | Victor Stinner | 2014-10-11 | 1 | -1/+21 |
|
|
* | asyncio.test_tasks: Fix test_env_var_debug to use correct asyncio module | Yury Selivanov | 2014-09-25 | 1 | -4/+11 |
|
|
* | asyncio: Improve canceled timer handles cleanup. Closes issue #22448. | Yury Selivanov | 2014-09-25 | 2 | -10/+88 |
|
|
* | asyncio, Tulip issue 206: In debug mode, keep the callback in the | Victor Stinner | 2014-09-17 | 1 | -4/+5 |
|
|
* | asyncio, Tulip issue 205: Fix a race condition in BaseSelectorEventLoop.sock_... | Victor Stinner | 2014-08-31 | 1 | -22/+52 |
|
|
* | asyncio, Tulip issue 201: Fix a race condition in wait_for() | Victor Stinner | 2014-08-28 | 1 | -0/+15 |
|
|
* | asyncio, tulip issue 203: Add _FlowControlMixin.get_write_buffer_limits() method | Victor Stinner | 2014-08-25 | 1 | -0/+2 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-08-25 | 4 | -29/+42 |
|
|
* | Close #22063: socket operations (socket,recv, sock_sendall, sock_connect, | Victor Stinner | 2014-07-29 | 1 | -0/+18 |
|
|
* | asyncio: Use the new os.set_blocking() function of Python 3.5 if available | Victor Stinner | 2014-07-29 | 1 | -6/+6 |
|
|