summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error ifVictor Stinner2014-02-133-13/+41
* asyncio: Change as_completed() to use a Queue, to avoid O(N**2) behavior. Fix...Guido van Rossum2014-02-131-20/+33
* asyncio.events: Use __slots__ in Handle and TimerHandleYury Selivanov2014-02-121-0/+4
* Issue #20505: Remove debug codeVictor Stinner2014-02-111-20/+0
* asyncio, Tulip issue 131: as_completed() and wait() now raises a TypeError ifVictor Stinner2014-02-111-0/+4
* asyncio, Tulip issue 130: Add more checks on subprocess_exec/subprocess_shellVictor Stinner2014-02-112-5/+12
* asyncio, Tulip issue 126: call_soon(), call_soon_threadsafe(), call_later(),Victor Stinner2014-02-112-1/+10
* Issue #20505: use also the monotonic time to decide if asyncio debug tracesVictor Stinner2014-02-111-3/+4
* Issue #20505: Oops, only print debug info if selector.select(timeout) took lessVictor Stinner2014-02-111-1/+1
* Issue #20505: Improve debug info in asyncio event loopVictor Stinner2014-02-111-5/+18
* Issue #20505: Fix TestLoop, set the clock resolutionVictor Stinner2014-02-111-0/+1
* Issue #20505: BaseEventLoop uses again the resolution of the clock to decide ifVictor Stinner2014-02-101-2/+3
* Issue #20505: Add debug info to analyze sporaric failures ofVictor Stinner2014-02-101-0/+6
* asyncio: Tulip issue 112: Inline make_handle() into Handle constructorVictor Stinner2014-02-095-12/+7
* asyncio: Remove more relics of resolution/granularity.Guido van Rossum2014-02-092-6/+0
* asyncio: Remove Process.subprocess attribute; it's too easy to get inconsistentVictor Stinner2014-02-091-4/+0
* Issue #20505: Remove resolution and _granularity from selectors and asyncioVictor Stinner2014-02-073-14/+1
* Issue #20505: add debug infoVictor Stinner2014-02-071-0/+10
* asyncio.tasks: Fix as_completed, gather & wait to work with duplicate coroutinesYury Selivanov2014-02-071-3/+4
* asyncio.tasks.gather: Fix docstringYury Selivanov2014-02-061-1/+1
* asyncio.streams.StreamReader: Add 'at_eof()' methodYury Selivanov2014-02-061-0/+4
* asyncio.streams: Use bytebuffer in StreamReader; Add assertion in feed_dataYury Selivanov2014-02-051-49/+24
* asyncio: Fix _ProactorWritePipeTransport._pipe_closed()Victor Stinner2014-02-041-1/+4
* asyncio.subprocess: Replace Process.get_subprocess() method with aVictor Stinner2014-02-031-1/+2
* Issue #20400: Merge Tulip into Python: add the new asyncio.subprocess moduleVictor Stinner2014-02-015-33/+230
* Issue #20455: Add a resolution attribute to IocpProactor (1 ms)Victor Stinner2014-01-312-0/+2
* Issue #20455: asyncio: use the same code to round a timeout than the selectorsVictor Stinner2014-01-311-4/+9
* Issue #20455: asyncio: write a new write pipe transport class for proactor (onVictor Stinner2014-01-311-12/+26
* asyncio: Fix _UnixWritePipeTransport, raise BrokenPipeError when the pipe isVictor Stinner2014-01-311-1/+4
* Issue #20452: Remove debug code, no more neededVictor Stinner2014-01-311-9/+1
* asyncio: Fix error message in BaseEventLoop.subprocess_shell(). Patch writtenVictor Stinner2014-01-311-1/+1
* Issue #20452: select and selectors round (again) timeout away from zero forVictor Stinner2014-01-311-10/+5
* Issue #20452: Oops, fix debug code :-/Victor Stinner2014-01-311-5/+10
* Issue #20452: add more info in case of test_asyncio failure to try to debug theVictor Stinner2014-01-311-1/+9
* asyncio: Fix misc whitespace issues.Guido van Rossum2014-01-311-0/+1
* asyncio: Fix granularity of test_utils.TestLoop.Victor Stinner2014-01-311-0/+1
* asyncio: Future.set_exception(exc) should instantiate exc if it is a class.Victor Stinner2014-01-311-0/+2
* asyncio: subprocess_shell() and subprocess_exec() now raise ValueError instea...Victor Stinner2014-01-291-5/+14
* asyncio: Fix _make_subprocess_transport(): pass extra value to the constructor.Victor Stinner2014-01-292-2/+2
* asyncio: wait_for() now accepts None as timeout (Victor Stinner).Guido van Rossum2014-01-291-0/+3
* asyncio: Pass through pause/resume from subprocess pipe proto to subprocess p...Guido van Rossum2014-01-291-2/+5
* asyncio: Refactor drain logic in streams.py to be reusable.Guido van Rossum2014-01-291-36/+61
* asyncio: Get rid of _try_connected().Victor Stinner2014-01-291-18/+14
* asyncio: Add write flow control to unix pipes.Guido van Rossum2014-01-291-3/+11
* asyncio: Refactoring: move write flow control to a subclass/mixin.Guido van Rossum2014-01-291-37/+61
* asyncio: _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTrans...Victor Stinner2014-01-292-2/+4
* asyncio: remove temporary aliasesVictor Stinner2014-01-271-6/+0
* Merge latest Tulip into asyncioAndrew Svetlov2014-01-263-7/+0
* asyncio: Rename {Empty,Full} to {QueueEmpty,QueueFull} and no longer get them...Guido van Rossum2014-01-261-9/+19
* asyncio: Locks refactor: use a separate context manager; remove Semaphore._lo...Guido van Rossum2014-01-261-22/+60