| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUG | Victor Stinner | 2014-06-22 | 4 | -12/+4 |
|
|
* | asyncio, Tulip issue 105: in debug mode, log callbacks taking more than 100 ms | Victor Stinner | 2014-06-20 | 1 | -0/+28 |
|
|
* | asyncio: Fix pyflakes errors | Victor Stinner | 2014-06-18 | 3 | -5/+2 |
|
|
* | asyncio: Refactor tests: add a base TestCase class | Victor Stinner | 2014-06-17 | 12 | -219/+127 |
|
|
* | asyncio: Refactor test__run_once_logging() to not rely on the exact number of | Victor Stinner | 2014-06-17 | 1 | -18/+11 |
|
|
* | asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator on | Victor Stinner | 2014-06-17 | 1 | -8/+40 |
|
|
* | Issue #21723: asyncio.Queue: support any type of number (ex: float) for the | Victor Stinner | 2014-06-17 | 1 | -0/+15 |
|
|
* | Sync asyncio with Tulip: Fix test_tasks for Python 3.5 | Victor Stinner | 2014-06-16 | 1 | -4/+8 |
|
|
* | asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task) | Victor Stinner | 2014-06-12 | 2 | -29/+78 |
|
|
* | Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop | Victor Stinner | 2014-06-10 | 2 | -3/+28 |
|
|
* | Fix asyncio tests on Windows: wait for the subprocess exit | Victor Stinner | 2014-06-03 | 1 | -0/+2 |
|
|
* | Issue #21651: Fix ResourceWarning when running asyncio tests on Windows. | Victor Stinner | 2014-06-03 | 1 | -0/+1 |
|
|
* | cleanup test_asyncio/test_base_events.py: cm variable was unused | Victor Stinner | 2014-06-03 | 1 | -1/+1 |
|
|
* | Issue #21119: asyncio: Make sure that socketpair() close sockets on error | Victor Stinner | 2014-06-03 | 1 | -0/+9 |
|
|
* | Issue #21119: asyncio now closes sockets on errors | Victor Stinner | 2014-06-03 | 2 | -0/+39 |
|
|
* | Fix for raising exception not derived from BaseException in _SelectorSslTrans... | Andrew Svetlov | 2014-05-27 | 1 | -0/+4 |
|
|
* | asyncio: test_base_events: use mock.Mock instead of unittest.mock.Mock to | Victor Stinner | 2014-05-20 | 1 | -1/+1 |
|
|
* | Fix test-order-dependend asyncio test failure caused by rev 909ea8cc86bbab92d... | Guido van Rossum | 2014-05-13 | 1 | -6/+9 |
|
|
* | asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if ... | Guido van Rossum | 2014-05-12 | 1 | -0/+36 |
|
|
* | asyncio: Fix the second half of issue #21447: race in _write_to_self(). | Guido van Rossum | 2014-05-06 | 1 | -2/+3 |
|
|
* | asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166. | Guido van Rossum | 2014-04-27 | 2 | -0/+14 |
|
|
* | asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163). | Guido van Rossum | 2014-04-15 | 1 | -0/+47 |
|
|
* | remove superfluous and useless line | Benjamin Peterson | 2014-04-16 | 1 | -1/+0 |
|
|
* | asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctly | Yury Selivanov | 2014-04-15 | 1 | -0/+18 |
|
|
* | asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1 | Yury Selivanov | 2014-04-15 | 1 | -0/+25 |
|
|
* | Issue #21155: asyncio.EventLoop.create_unix_server() now raises a ValueError if | Victor Stinner | 2014-04-07 | 1 | -0/+11 |
|
|
* | Issue #20668: Remove tests.txt of test_asyncio | Victor Stinner | 2014-03-31 | 1 | -14/+0 |
|
|
* | asyncio.tests: Autodiscover asyncio tests. Patch by Vajrasky Kok. Closes #20668 | Yury Selivanov | 2014-03-27 | 1 | -12/+10 |
|
|
* | asyncio: Ensure call_soon(), call_later() and call_at() are invoked on current | Victor Stinner | 2014-03-21 | 1 | -0/+23 |
|
|
* | asyncio, Tulip issue 157: Improve test_events.py, avoid run_briefly() which is | Victor Stinner | 2014-03-06 | 1 | -64/+65 |
|
|
* | asyncio: Synchronize with Tulip | Victor Stinner | 2014-03-05 | 2 | -4/+50 |
|
|
* | asyncio: simplify test_events.py, don't use non local variables and don't call | Victor Stinner | 2014-02-26 | 1 | -186/+79 |
|
|
* | asyncio: Fix pyflakes warnings: remove unused variables and imports | Victor Stinner | 2014-02-26 | 7 | -25/+12 |
|
|
* | asyncio: Replace "unittest.mock" with "mock" in unit tests | Victor Stinner | 2014-02-26 | 11 | -366/+366 |
|
|
* | asyncio: _check_resolved_address() must also accept IPv6 without flow_info and | Victor Stinner | 2014-02-20 | 1 | -3/+6 |
|
|
* | asyncio: ops, and now fix also the unit test for IPv6 address: | Victor Stinner | 2014-02-20 | 1 | -4/+3 |
|
|
* | asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests. | Victor Stinner | 2014-02-19 | 2 | -0/+34 |
|
|
* | Issue #20682: Oops, fix test_create_connection() of test_asyncio (fix my prev... | Victor Stinner | 2014-02-19 | 1 | -1/+1 |
|
|
* | Close #20682: Fix UNIX sockets tests of test_asyncio on Mac OS X Tiger | Victor Stinner | 2014-02-19 | 1 | -5/+27 |
|
|
* | asyncio: WriteTransport.set_write_buffer_size to call _maybe_pause_protocol | Yury Selivanov | 2014-02-19 | 1 | -0/+23 |
|
|
* | asyncio: pep8-ify the code. | Yury Selivanov | 2014-02-19 | 3 | -5/+17 |
|
|
* | asyncio: Fix spelling and typos. | Yury Selivanov | 2014-02-19 | 5 | -7/+6 |
|
|
* | Issue #20682: test_asyncio, _basetest_create_connection() checks also the | Victor Stinner | 2014-02-19 | 1 | -0/+1 |
|
|
* | asyncio, Tulip issue 143: UNIX domain methods, fix ResourceWarning and | Victor Stinner | 2014-02-19 | 1 | -13/+15 |
|
|
* | asyncio, Tulip issue 139: Improve error messages on "fatal errors" | Victor Stinner | 2014-02-19 | 3 | -16/+40 |
|
|
* | asyncio: New error handling API. Issue #20681. | Yury Selivanov | 2014-02-18 | 6 | -59/+258 |
|
|
* | asyncio: Add support for UNIX Domain Sockets. | Yury Selivanov | 2014-02-18 | 5 | -156/+475 |
|
|