| Commit message (Expand) | Author | Age | Files | Lines |
* | asyncio: sync with Tulip | Victor Stinner | 2014-06-30 | 2 | -10/+51 |
|
|
* | asyncio: sync with Tulip, add a new asyncio.coroutines module | Victor Stinner | 2014-06-28 | 11 | -182/+204 |
|
|
* | asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and | Victor Stinner | 2014-06-27 | 4 | -20/+67 |
|
|
* | asyncio, Tulip issue 137: In debug mode, add the traceback where the coroutine | Victor Stinner | 2014-06-27 | 1 | -7/+10 |
|
|
* | asyncio: Handle error handler: enhance formatting of the callback | Victor Stinner | 2014-06-25 | 1 | -2/+2 |
|
|
* | asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandle | Victor Stinner | 2014-06-25 | 3 | -53/+102 |
|
|
* | 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 | -0/+16 |
|
|
* | asyncio: Fix BaseEventLoop._assert_is_current_event_loop(): get_event_loop() | Victor Stinner | 2014-06-23 | 1 | -2/+5 |
|
|
* | asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the | Victor Stinner | 2014-06-22 | 4 | -3/+7 |
|
|
* | asyncio, Tulip issue 172: only log selector timing in debug mode | Victor Stinner | 2014-06-22 | 1 | -2/+1 |
|
|
* | asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUG | Victor Stinner | 2014-06-22 | 1 | -1/+2 |
|
|
* | asyncio: BaseEventLoop._assert_is_current_event_loop() now only raises an | Victor Stinner | 2014-06-22 | 1 | -1/+2 |
|
|
* | asyncio, Tulip issue 105: in debug mode, log callbacks taking more than 100 ms | Victor Stinner | 2014-06-20 | 1 | -5/+27 |
|
|
* | Tulip issue 83: document more asyncio functions in docstrings | Victor Stinner | 2014-06-19 | 2 | -7/+55 |
|
|
* | Closes #21595: asyncio.BaseSelectorEventLoop._read_from_self() now reads all | Victor Stinner | 2014-06-19 | 1 | -4/+9 |
|
|
* | asyncio: Refactor tests: add a base TestCase class | Victor Stinner | 2014-06-17 | 1 | -0/+18 |
|
|
* | asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator on | Victor Stinner | 2014-06-17 | 1 | -4/+6 |
|
|
* | Issue #21723: asyncio.Queue: support any type of number (ex: float) for the | Victor Stinner | 2014-06-17 | 1 | -3/+3 |
|
|
* | asyncio: Task.__repr__() now also handles CoroWrapper | Victor Stinner | 2014-06-16 | 1 | -1/+1 |
|
|
* | asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task) | Victor Stinner | 2014-06-12 | 3 | -2/+45 |
|
|
* | Issue #21596: asyncio.wait(): mention that the sequence of futures must not | Victor Stinner | 2014-06-10 | 1 | -0/+2 |
|
|
* | Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop | Victor Stinner | 2014-06-10 | 3 | -16/+42 |
|
|
* | Tulip issue 83, Python issue #21252: Fill some XXX docstrings in asyncio | Victor Stinner | 2014-06-05 | 2 | -14/+25 |
|
|
* | Issue #21119: asyncio: Make sure that socketpair() close sockets on error | Victor Stinner | 2014-06-03 | 1 | -15/+17 |
|
|
* | Issue #21119: asyncio now closes sockets on errors | Victor Stinner | 2014-06-03 | 2 | -0/+11 |
|
|
* | Issue #21601: Document asyncio.Task.cancel(). Initial patch written by Vajrasky | Victor Stinner | 2014-06-02 | 1 | -2/+2 |
|
|
* | Issue #21454: Fix asyncio.BaseEventLoop.connect_read_pipe doc | Victor Stinner | 2014-05-28 | 1 | -3/+3 |
|
|
* | Fix for raising exception not derived from BaseException in _SelectorSslTrans... | Andrew Svetlov | 2014-05-27 | 1 | -1/+1 |
|
|
* | asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if ... | Guido van Rossum | 2014-05-12 | 1 | -6/+11 |
|
|
* | asyncio: Upstream issue #167: remove dead code, by Marc Schlaich. | Guido van Rossum | 2014-05-10 | 1 | -5/+1 |
|
|
* | asyncio: Fix the second half of issue #21447: race in _write_to_self(). | Guido van Rossum | 2014-05-06 | 1 | -4/+11 |
|
|
* | asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166. | Guido van Rossum | 2014-04-27 | 2 | -2/+2 |
|
|
* | asyncio: Be careful accessing instance variables in __del__ (closes #21340). | Guido van Rossum | 2014-04-27 | 1 | -1/+3 |
|
|
* | asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163). | Guido van Rossum | 2014-04-15 | 1 | -0/+12 |
|
|
* | asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctly | Yury Selivanov | 2014-04-15 | 1 | -0/+2 |
|
|
* | asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1 | Yury Selivanov | 2014-04-15 | 1 | -1/+4 |
|
|
* | Issue #21155: asyncio.EventLoop.create_unix_server() now raises a ValueError if | Victor Stinner | 2014-04-07 | 1 | -0/+4 |
|
|
* | asyncio: Document Task.cancel() properly. | Victor Stinner | 2014-04-07 | 1 | -0/+19 |
|
|
* | asyncio: Ensure call_soon(), call_later() and call_at() are invoked on current | Victor Stinner | 2014-03-21 | 1 | -1/+22 |
|
|
* | asyncio, Tulip issue 157: Improve test_events.py, avoid run_briefly() which is | Victor Stinner | 2014-03-06 | 1 | -9/+6 |
|
|
* | asyncio: Synchronize with Tulip | Victor Stinner | 2014-03-05 | 2 | -2/+23 |
|
|
* | asyncio, Tulip issue 158: Task._step() now also sets self to None if an | Victor Stinner | 2014-03-04 | 1 | -1/+1 |
|
|
* | asyncio/windows_events.py: use more revelant names to overlapped callbacks | Victor Stinner | 2014-02-26 | 2 | -12/+11 |
|
|
* | asyncio: Fix pyflakes warnings: remove unused variables and imports | Victor Stinner | 2014-02-26 | 1 | -1/+0 |
|
|
* | asyncio: Replace "unittest.mock" with "mock" in unit tests | Victor Stinner | 2014-02-26 | 1 | -2/+2 |
|
|
* | asyncio: _check_resolved_address() must also accept IPv6 without flow_info and | Victor Stinner | 2014-02-20 | 1 | -1/+1 |
|
|
* | asyncio: Fix _check_resolved_address() for IPv6 address | Victor Stinner | 2014-02-20 | 1 | -2/+5 |
|
|
* | asyncio: remove unused imports and unused variables noticed by pyflakes | Victor Stinner | 2014-02-20 | 6 | -9/+1 |
|
|
* | asyncio: Fix _ProactorWritePipeTransport._pipe_closed() | Victor Stinner | 2014-02-20 | 1 | -1/+1 |
|
|