| Commit message (Expand) | Author | Age | Files | Lines |
* | (Merge 3.4) asyncio: Fix test_stdin_broken_pipe(), drain() is not a coroutine | Victor Stinner | 2014-07-21 | 1 | -2/+7 |
|\ |
|
| * | asyncio: Fix test_stdin_broken_pipe(), drain() is not a coroutine | Victor Stinner | 2014-07-21 | 1 | -2/+7 |
|
|
* | | (Merge 3.4) Issue #21247: Fix a race condition in test_send_signal() of asyncio | Victor Stinner | 2014-07-17 | 1 | -4/+15 |
|\ \
| |/ |
|
| * | Issue #21247: Fix a race condition in test_send_signal() of asyncio | Victor Stinner | 2014-07-17 | 1 | -4/+15 |
|
|
* | | (Merge 3.4) Python issue #21645, Tulip issue 192: Rewrite signal handling | Victor Stinner | 2014-07-17 | 2 | -3/+3 |
|\ \
| |/ |
|
| * | Python issue #21645, Tulip issue 192: Rewrite signal handling | Victor Stinner | 2014-07-17 | 2 | -3/+3 |
|
|
* | | (Merge 3.4) asyncio: Fix test_stdin_broken_pipe(), drain() can also raise | Victor Stinner | 2014-07-17 | 1 | -2/+2 |
|\ \
| |/ |
|
| * | asyncio: Fix test_stdin_broken_pipe(), drain() can also raise | Victor Stinner | 2014-07-17 | 1 | -2/+2 |
|
|
* | | (Merge 3.4) asyncio, tulip issue 190: Process.communicate() must ignore | Victor Stinner | 2014-07-17 | 1 | -7/+20 |
|\ \
| |/ |
|
| * | asyncio, tulip issue 190: Process.communicate() must ignore BrokenPipeError | Victor Stinner | 2014-07-17 | 1 | -7/+20 |
|
|
* | | (Merge 3.4) asyncio: test_as_completed(): disable "slow callback" warning | Victor Stinner | 2014-07-16 | 1 | -0/+2 |
|\ \
| |/ |
|
| * | asyncio: test_as_completed(): disable "slow callback" warning | Victor Stinner | 2014-07-16 | 1 | -0/+2 |
|
|
* | | (Merge 3.4) Issue #21163: Fix "destroy pending task" warning in test_wait_err... | Victor Stinner | 2014-07-16 | 1 | -4/+7 |
|\ \
| |/ |
|
| * | Issue #21163: Fix "destroy pending task" warning in test_wait_errors() | Victor Stinner | 2014-07-16 | 1 | -4/+7 |
|
|
* | | (Merge 3.4) asyncio: test_selector_events: remove duplicate call to | Victor Stinner | 2014-07-16 | 1 | -3/+3 |
|\ \
| |/ |
|
| * | asyncio: test_selector_events: remove duplicate call to _on_handshake() method | Victor Stinner | 2014-07-16 | 1 | -3/+3 |
|
|
* | | Issue #21645, #21985: Remove debug code | Victor Stinner | 2014-07-16 | 1 | -33/+17 |
|
|
* | | Merge with Python 3.4 | Victor Stinner | 2014-07-14 | 2 | -17/+21 |
|\ \
| |/ |
|
| * | asyncio tests: make quiet the logs of SSL handshake failures when running tests | Victor Stinner | 2014-07-14 | 2 | -17/+21 |
|
|
* | | Issue #21645: test_asyncio, log debug trace into sys.__stderr__, not in | Victor Stinner | 2014-07-14 | 1 | -1/+1 |
|
|
* | | Issue #21645: Add debug code to analyze a failure on FreeBSD 9 | Victor Stinner | 2014-07-14 | 1 | -17/+33 |
|
|
* | | Merge with Python 3.4 | Victor Stinner | 2014-07-14 | 1 | -2/+0 |
|\ \
| |/ |
|
| * | asyncio: sync with Tulip | Victor Stinner | 2014-07-14 | 1 | -2/+0 |
|
|
* | | Merge with 3.4 | Victor Stinner | 2014-07-12 | 2 | -9/+10 |
|\ \
| |/ |
|
| * | asyncio: sync with Tulip | Victor Stinner | 2014-07-12 | 2 | -9/+10 |
|
|
* | | (Merge 3.4) asyncio: sync with Tulip | Victor Stinner | 2014-07-11 | 3 | -7/+6 |
|\ \
| |/ |
|
| * | asyncio: sync with Tulip | Victor Stinner | 2014-07-11 | 3 | -7/+6 |
|
|
* | | (Merge 3.4) asyncio: sync with Tulip | Victor Stinner | 2014-07-10 | 1 | -8/+3 |
|\ \
| |/ |
|
| * | asyncio: sync with Tulip | Victor Stinner | 2014-07-10 | 1 | -8/+3 |
|
|
* | | (Merge 3.4) asyncio: sync with Tulip | Victor Stinner | 2014-07-10 | 1 | -7/+42 |
|\ \
| |/ |
|
| * | asyncio: sync with Tulip | Victor Stinner | 2014-07-10 | 1 | -7/+42 |
|
|
* | | (Merge 3.4) asyncio: sync with Tulip | Victor Stinner | 2014-07-10 | 2 | -12/+60 |
|\ \
| |/ |
|
| * | asyncio: sync with Tulip | Victor Stinner | 2014-07-10 | 2 | -12/+60 |
|
|
* | | (Merge 3.4) asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() | Victor Stinner | 2014-07-08 | 1 | -0/+10 |
|\ \
| |/ |
|
| * | asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waits | Victor Stinner | 2014-07-08 | 1 | -0/+10 |
|
|
* | | Merge 3.4 | Victor Stinner | 2014-07-08 | 4 | -2/+43 |
|\ \
| |/ |
|
| * | asyncio: sync with Tulip | Victor Stinner | 2014-07-08 | 4 | -2/+43 |
|
|
* | | (Merge 3.4) Closes #21886, #21447: Fix a race condition in asyncio when setting | Victor Stinner | 2014-07-05 | 2 | -0/+10 |
|\ \
| |/ |
|
| * | Closes #21886, #21447: Fix a race condition in asyncio when setting the result | Victor Stinner | 2014-07-05 | 2 | -0/+10 |
|
|
* | | (Merge 3.4) asyncio: sync with Tulip | Victor Stinner | 2014-07-02 | 1 | -0/+11 |
|\ \
| |/ |
|
| * | asyncio: sync with Tulip | Victor Stinner | 2014-07-02 | 1 | -0/+11 |
|
|
* | | (Merge 3.4) asyncio: Fix test_sleep_cancel(): call_later() mock has no self p... | Victor Stinner | 2014-07-01 | 1 | -2/+2 |
|\ \
| |/ |
|
| * | 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 | Victor Stinner | 2014-06-30 | 1 | -0/+1 |
|
|
* | | Issue #21645: asyncio: add a watchdog in test_read_all_from_pipe_reader() for | Victor Stinner | 2014-06-30 | 1 | -0/+6 |
|/ |
|
* | 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 |
|
|