| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| | | | * | | | | Don't create pipes for stdin, stdout, stderr by default | Victor Stinner | 2014-01-28 | 5 | -42/+22 |
| | | | * | | | | Add get_pid(), get_subprocess() and close() methods to SubprocessStreamProtocol | Victor Stinner | 2014-01-28 | 1 | -2/+11 |
| | | | * | | | | transport is already set when the protocol is returned to the user | Victor Stinner | 2014-01-28 | 1 | -4/+3 |
| | | | * | | | | Fix subprocess_streams | Victor Stinner | 2014-01-28 | 1 | -1/+2 |
| | | | * | | | | Rename subprocess_stream to subprocess_streams | Victor Stinner | 2014-01-28 | 2 | -2/+2 |
| | | | * | | | | Subprocess: Don't link stdin to stdout, stdout file descriptor be may closed in | Victor Stinner | 2014-01-28 | 1 | -1/+0 |
| | | | * | | | | Revert changeset 967:cd10d9eb6ed1: Fix ReadSubprocessPipeProto: use a mixin to | Victor Stinner | 2014-01-28 | 1 | -5/+2 |
| | | | * | | | | Rename helper functions: | Victor Stinner | 2014-01-28 | 1 | -2/+2 |
| | | | * | | | | _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTransport don't | Victor Stinner | 2014-01-28 | 2 | -2/+4 |
| | | | * | | | | Fix SubprocessStreamProtocol.pipe_connection_lost(): wake up the drain waiter | Victor Stinner | 2014-01-28 | 2 | -10/+17 |
| | | | * | | | | Add asyncio.subprocess_stream module | Victor Stinner | 2014-01-28 | 2 | -0/+109 |
| | | | * | | | | Fix ReadSubprocessPipeProto: use a mixin to not add writing methods | Victor Stinner | 2014-01-28 | 1 | -3/+6 |
| | | | * | | | | Simplify WriteSubprocessPipeProto and BaseSubprocessTransport._post_init() | Victor Stinner | 2014-01-28 | 1 | -17/+13 |
| | | | * | | | | Simplify StreamWriter, protocol is always defined | Victor Stinner | 2014-01-28 | 1 | -1/+1 |
| | | | * | | | | Apply Guido's my_subprocess_3.patch | Victor Stinner | 2014-01-28 | 4 | -61/+103 |
| * | | | | | | | Copy a bunch of fixes by Victor for the Proactor event loop from the CPython ... | Guido van Rossum | 2014-01-31 | 3 | -17/+38 |
| * | | | | | | | selectors: round (again) timeout away from zero for poll and epoll | Victor Stinner | 2014-01-31 | 1 | -2/+8 |
| * | | | | | | | asyncio: Fix error message in BaseEventLoop.subprocess_shell(). Patch written | Victor Stinner | 2014-01-31 | 1 | -1/+1 |
| |/ / / / / / |
|
| * | | | | | | Normalize whitespace (use "make pep8" to verify). | Guido van Rossum | 2014-01-30 | 1 | -0/+1 |
| * | | | | | | Future.set_exception(exc) now instanciate exc if it is a class | Victor Stinner | 2014-01-30 | 1 | -0/+2 |
| | |_|_|_|/
|/| | | | |
|
| * | | | | | Fix granularity of test_utils.TestLoop | Victor Stinner | 2014-01-30 | 1 | -0/+1 |
| | |_|_|/
|/| | | |
|
| * | | | | Fix _UnixWritePipeTransport: raise BrokenPipeError when the pipe is closed | Victor Stinner | 2014-01-30 | 1 | -1/+4 |
| |/ / / |
|
| * | | | subprocess_shell() and subprocess_exec() methods of BaseEventLoop now raises a | Victor Stinner | 2014-01-29 | 1 | -5/+14 |
| | |/
|/| |
|
| * | | Fix _make_subprocess_transport(): pass extra value to the constructor | Victor Stinner | 2014-01-29 | 2 | -2/+2 |
| * | | Move async() call back to its original position. Issue 117. | Guido van Rossum | 2014-01-28 | 1 | -1/+1 |
| * | | wait_for() now accepts None as timeout | Victor Stinner | 2014-01-28 | 1 | -1/+4 |
| * | | pass through pause/resume from subprocess pipe proto to subprocess proto. | Guido van Rossum | 2014-01-28 | 1 | -2/+5 |
| * | | Refactor drain logic in streams.py to be reusable. | Guido van Rossum | 2014-01-28 | 1 | -36/+61 |
| * | | Refactoring: get rid of _try_connected(). | Victor Stinner | 2014-01-28 | 1 | -18/+14 |
| * | | Add write flow control to unix pipes. | Guido van Rossum | 2014-01-28 | 1 | -3/+11 |
| * | | Refactoring: move write flow control to a subclass/mixin. | Guido van Rossum | 2014-01-27 | 1 | -37/+61 |
| * | | _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTransport don't | Victor Stinner | 2014-01-28 | 2 | -2/+4 |
| |/ |
|
| * | Remove temporary aliases Full/Empty. | Guido van Rossum | 2014-01-27 | 1 | -6/+0 |
| * | Code cleanup: remove unused function | Andrew Svetlov | 2014-01-26 | 3 | -7/+0 |
| * | Rename {Empty,Full} to {QueueEmpty,QueueFull} and no longer get them from que... | Guido van Rossum | 2014-01-25 | 1 | -9/+19 |
| * | Fix whitespace. | Guido van Rossum | 2014-01-25 | 1 | -1/+1 |
| * | Locks refactor: use a separate context manager; remove Semaphore._locked. | Guido van Rossum | 2014-01-25 | 1 | -22/+60 |
| * | Fix race in FastChildWatcher (by its original author, Anthony Baire). | Guido van Rossum | 2014-01-25 | 1 | -20/+16 |
| * | Make the new granularity attribute private | Victor Stinner | 2014-01-26 | 2 | -3/+3 |
| * | Simplify BaseEventLoop._run_once(): avoid math.ceil(), use simple arithmetic | Victor Stinner | 2014-01-25 | 1 | -6/+1 |
| * | Don't export BaseEventLoop, BaseSelectorEventLoop nor BaseProactorEventLoop | Victor Stinner | 2014-01-25 | 1 | -7/+1 |
| * | Strip trailing space | Victor Stinner | 2014-01-25 | 1 | -1/+1 |
| * | Export more symbols: BaseEventLoop, BaseProactorEventLoop, | Victor Stinner | 2014-01-25 | 3 | -5/+17 |
| * | Add a granularity attribute to BaseEventLoop: maximum between the resolution of | Victor Stinner | 2014-01-25 | 3 | -0/+11 |
| * | selectors: add a resolution attribute to BaseSelector | Victor Stinner | 2014-01-25 | 1 | -1/+22 |
| * | Revert changes in selectors for PollSelector and EpollSelector: round again the | Victor Stinner | 2014-01-25 | 1 | -8/+2 |
| * | Issue #111: StreamReader.readexactly() now raises an IncompleteReadError if the | Victor Stinner | 2014-01-24 | 1 | -6/+16 |
| * | _UnixWritePipeTransport now also supports character devices, as | Victor Stinner | 2014-01-24 | 1 | -3/+5 |
| * | Issue #110: StreamReader.read() and StreamReader.readline() now raise a | Victor Stinner | 2014-01-23 | 1 | -6/+13 |
| * | Fix open_connection() docstring, writer is a StreamWriter | Victor Stinner | 2014-01-23 | 1 | -1/+1 |