| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-29 | 3 | -8/+20 |
|
|
* | Accept optional lock object in Condition ctor (tulip issue #198) | Andrew Svetlov | 2014-07-26 | 1 | -0/+12 |
|
|
* | asyncio, test_subprocess: relax timings for slow builbots | Victor Stinner | 2014-07-25 | 1 | -2/+2 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-24 | 1 | -10/+20 |
|
|
* | asyncio tests: relax timings for slow buildbots | Victor Stinner | 2014-07-24 | 1 | -4/+4 |
|
|
* | Issue #22002: Make full use of test discovery in test sub-packages. | Zachary Ware | 2014-07-23 | 2 | -26/+6 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-23 | 2 | -11/+10 |
|
|
* | asyncio: Fix test_stdin_broken_pipe(), drain() is not a coroutine | Victor Stinner | 2014-07-21 | 1 | -2/+7 |
|
|
* | Issue #21247: Fix a race condition in test_send_signal() of asyncio | Victor Stinner | 2014-07-17 | 1 | -4/+15 |
|
|
* | Python issue #21645, Tulip issue 192: Rewrite signal handling | Victor Stinner | 2014-07-17 | 2 | -3/+3 |
|
|
* | asyncio: Fix test_stdin_broken_pipe(), drain() can also raise | Victor Stinner | 2014-07-17 | 1 | -2/+2 |
|
|
* | asyncio, tulip issue 190: Process.communicate() must ignore BrokenPipeError | Victor Stinner | 2014-07-17 | 1 | -7/+20 |
|
|
* | asyncio: test_as_completed(): disable "slow callback" warning | Victor Stinner | 2014-07-16 | 1 | -0/+2 |
|
|
* | Issue #21163: Fix "destroy pending task" warning in test_wait_errors() | Victor Stinner | 2014-07-16 | 1 | -4/+7 |
|
|
* | asyncio: test_selector_events: remove duplicate call to _on_handshake() method | Victor Stinner | 2014-07-16 | 1 | -3/+3 |
|
|
* | asyncio tests: make quiet the logs of SSL handshake failures when running tests | Victor Stinner | 2014-07-14 | 2 | -17/+21 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-14 | 1 | -2/+0 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-12 | 2 | -9/+10 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-11 | 3 | -7/+6 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-10 | 1 | -8/+3 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-10 | 1 | -7/+42 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-10 | 2 | -12/+60 |
|
|
* | asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waits | Victor Stinner | 2014-07-08 | 1 | -0/+10 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-08 | 4 | -2/+43 |
|
|
* | Closes #21886, #21447: Fix a race condition in asyncio when setting the result | Victor Stinner | 2014-07-05 | 2 | -0/+10 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-02 | 1 | -0/+11 |
|
|
* | asyncio: Fix test_sleep_cancel(): call_later() mock has no self parameter | Victor Stinner | 2014-07-01 | 1 | -2/+2 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-06-30 | 1 | -0/+1 |
|
|
* | asyncio: sync with Tulip, add a new asyncio.coroutines module | Victor Stinner | 2014-06-28 | 1 | -17/+17 |
|
|
* | asyncio: Fix two "Coroutine xxx was never yielded from" messages in tests | Victor Stinner | 2014-06-27 | 1 | -2/+6 |
|
|
* | asyncio: Fix unit tests on Windows, escape filenames in regex | Victor Stinner | 2014-06-27 | 2 | -6/+6 |
|
|
* | asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and | Victor Stinner | 2014-06-27 | 4 | -6/+113 |
|
|
* | asyncio, Tulip issue 137: In debug mode, add the traceback where the coroutine | Victor Stinner | 2014-06-27 | 1 | -0/+32 |
|
|
* | asyncio: Oops, restore a removed test | Victor Stinner | 2014-06-27 | 1 | -0/+3 |
|
|
* | Issue #21163: Fix one more "Task was destroyed but it is pending!" log in tests | Victor Stinner | 2014-06-25 | 1 | -2/+6 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-06-25 | 2 | -0/+9 |
|
|
* | Issue #21163, asyncio: Fix some "Task was destroyed but it is pending!" logs ... | Victor Stinner | 2014-06-25 | 3 | -16/+22 |
|
|
* | asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandle | Victor Stinner | 2014-06-25 | 4 | -75/+129 |
|
|
* | asyncio: repr(Task) now also contains the line number even if the coroutine is | Victor Stinner | 2014-06-24 | 1 | -2/+4 |
|
|
* | asyncio: Log an error if a Task is destroyed while it is still pending | Victor Stinner | 2014-06-24 | 2 | -4/+44 |
|
|
* | asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the | Victor Stinner | 2014-06-22 | 1 | -0/+9 |
|
|
* | asyncio, Tulip issue 172: only log selector timing in debug mode | Victor Stinner | 2014-06-22 | 1 | -0/+3 |
|
|
* | asyncio: Add an unit test to check that setting the PYTHONASYNCIODEBUG env var | Victor Stinner | 2014-06-22 | 2 | -4/+24 |
|
|