| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | 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 |
|
|
* | asyncio.subprocess: Fix a race condition in communicate() | Victor Stinner | 2014-02-20 | 1 | -2/+1 |
|
|
* | asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests. | Victor Stinner | 2014-02-19 | 3 | -1/+19 |
|
|
* | asyncio: WriteTransport.set_write_buffer_size to call _maybe_pause_protocol | Yury Selivanov | 2014-02-19 | 1 | -2/+6 |
|
|
* | asyncio: pep8-ify the code. | Yury Selivanov | 2014-02-19 | 2 | -7/+9 |
|
|
* | asyncio: Fix spelling and typos. | Yury Selivanov | 2014-02-19 | 7 | -11/+11 |
|
|
* | asyncio, Tulip issue 143: UNIX domain methods, fix ResourceWarning and | Victor Stinner | 2014-02-19 | 1 | -4/+4 |
|
|
* | asyncio, Tulip issue 139: Improve error messages on "fatal errors" | Victor Stinner | 2014-02-19 | 3 | -22/+24 |
|
|
* | asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin | Yury Selivanov | 2014-02-18 | 4 | -125/+75 |
|
|
* | asyncio: New error handling API. Issue #20681. | Yury Selivanov | 2014-02-18 | 8 | -40/+229 |
|
|
* | asyncio: Make tests pass on Windows. | Guido van Rossum | 2014-02-18 | 1 | -1/+3 |
|
|
* | asyncio: Add support for UNIX Domain Sockets. | Yury Selivanov | 2014-02-18 | 5 | -37/+263 |
|
|
* | ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if | Victor Stinner | 2014-02-13 | 3 | -13/+41 |
|
|