summaryrefslogtreecommitdiff
path: root/asyncio
Commit message (Expand)AuthorAgeFilesLines
...
| | | * | | | Don't create pipes for stdin, stdout, stderr by defaultVictor Stinner2014-01-285-42/+22
| | | * | | | Add get_pid(), get_subprocess() and close() methods to SubprocessStreamProtocolVictor Stinner2014-01-281-2/+11
| | | * | | | transport is already set when the protocol is returned to the userVictor Stinner2014-01-281-4/+3
| | | * | | | Fix subprocess_streamsVictor Stinner2014-01-281-1/+2
| | | * | | | Rename subprocess_stream to subprocess_streamsVictor Stinner2014-01-282-2/+2
| | | * | | | Subprocess: Don't link stdin to stdout, stdout file descriptor be may closed inVictor Stinner2014-01-281-1/+0
| | | * | | | Revert changeset 967:cd10d9eb6ed1: Fix ReadSubprocessPipeProto: use a mixin toVictor Stinner2014-01-281-5/+2
| | | * | | | Rename helper functions:Victor Stinner2014-01-281-2/+2
| | | * | | | _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTransport don'tVictor Stinner2014-01-282-2/+4
| | | * | | | Fix SubprocessStreamProtocol.pipe_connection_lost(): wake up the drain waiterVictor Stinner2014-01-282-10/+17
| | | * | | | Add asyncio.subprocess_stream moduleVictor Stinner2014-01-282-0/+109
| | | * | | | Fix ReadSubprocessPipeProto: use a mixin to not add writing methodsVictor Stinner2014-01-281-3/+6
| | | * | | | Simplify WriteSubprocessPipeProto and BaseSubprocessTransport._post_init()Victor Stinner2014-01-281-17/+13
| | | * | | | Simplify StreamWriter, protocol is always definedVictor Stinner2014-01-281-1/+1
| | | * | | | Apply Guido's my_subprocess_3.patchVictor Stinner2014-01-284-61/+103
* | | | | | | Copy a bunch of fixes by Victor for the Proactor event loop from the CPython ...Guido van Rossum2014-01-313-17/+38
* | | | | | | selectors: round (again) timeout away from zero for poll and epollVictor Stinner2014-01-311-2/+8
* | | | | | | asyncio: Fix error message in BaseEventLoop.subprocess_shell(). Patch writtenVictor Stinner2014-01-311-1/+1
|/ / / / / /
* | | | | | Normalize whitespace (use "make pep8" to verify).Guido van Rossum2014-01-301-0/+1
* | | | | | Future.set_exception(exc) now instanciate exc if it is a classVictor Stinner2014-01-301-0/+2
| |_|_|_|/ |/| | | |
* | | | | Fix granularity of test_utils.TestLoopVictor Stinner2014-01-301-0/+1
| |_|_|/ |/| | |
* | | | Fix _UnixWritePipeTransport: raise BrokenPipeError when the pipe is closedVictor Stinner2014-01-301-1/+4
|/ / /
* | | subprocess_shell() and subprocess_exec() methods of BaseEventLoop now raises aVictor Stinner2014-01-291-5/+14
| |/ |/|
* | Fix _make_subprocess_transport(): pass extra value to the constructorVictor Stinner2014-01-292-2/+2
* | Move async() call back to its original position. Issue 117.Guido van Rossum2014-01-281-1/+1
* | wait_for() now accepts None as timeoutVictor Stinner2014-01-281-1/+4
* | pass through pause/resume from subprocess pipe proto to subprocess proto.Guido van Rossum2014-01-281-2/+5
* | Refactor drain logic in streams.py to be reusable.Guido van Rossum2014-01-281-36/+61
* | Refactoring: get rid of _try_connected().Victor Stinner2014-01-281-18/+14
* | Add write flow control to unix pipes.Guido van Rossum2014-01-281-3/+11
* | Refactoring: move write flow control to a subclass/mixin.Guido van Rossum2014-01-271-37/+61
* | _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTransport don'tVictor Stinner2014-01-282-2/+4
|/
* Remove temporary aliases Full/Empty.Guido van Rossum2014-01-271-6/+0
* Code cleanup: remove unused functionAndrew Svetlov2014-01-263-7/+0
* Rename {Empty,Full} to {QueueEmpty,QueueFull} and no longer get them from que...Guido van Rossum2014-01-251-9/+19
* Fix whitespace.Guido van Rossum2014-01-251-1/+1
* Locks refactor: use a separate context manager; remove Semaphore._locked.Guido van Rossum2014-01-251-22/+60
* Fix race in FastChildWatcher (by its original author, Anthony Baire).Guido van Rossum2014-01-251-20/+16
* Make the new granularity attribute privateVictor Stinner2014-01-262-3/+3
* Simplify BaseEventLoop._run_once(): avoid math.ceil(), use simple arithmeticVictor Stinner2014-01-251-6/+1
* Don't export BaseEventLoop, BaseSelectorEventLoop nor BaseProactorEventLoopVictor Stinner2014-01-251-7/+1
* Strip trailing spaceVictor Stinner2014-01-251-1/+1
* Export more symbols: BaseEventLoop, BaseProactorEventLoop,Victor Stinner2014-01-253-5/+17
* Add a granularity attribute to BaseEventLoop: maximum between the resolution ofVictor Stinner2014-01-253-0/+11
* selectors: add a resolution attribute to BaseSelectorVictor Stinner2014-01-251-1/+22
* Revert changes in selectors for PollSelector and EpollSelector: round again theVictor Stinner2014-01-251-8/+2
* Issue #111: StreamReader.readexactly() now raises an IncompleteReadError if theVictor Stinner2014-01-241-6/+16
* _UnixWritePipeTransport now also supports character devices, asVictor Stinner2014-01-241-3/+5
* Issue #110: StreamReader.read() and StreamReader.readline() now raise aVictor Stinner2014-01-231-6/+13
* Fix open_connection() docstring, writer is a StreamWriterVictor Stinner2014-01-231-1/+1