| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix SubprocessStreamProtocol.wait() if transport is not set yet | Victor Stinner | 2014-01-27 | 1 | -3/+4 |
| * | Pipe protocols now notify the subprocess protocol using futures instead of | Victor Stinner | 2014-01-27 | 2 | -43/+54 |
| * | cleanup code | Victor Stinner | 2014-01-27 | 1 | -20/+15 |
| * | Remove useless eof_received() method and useless WritePipeStream class | Victor Stinner | 2014-01-27 | 3 | -67/+2 |
| * | Oops, create_read_pipe_protocol/create_write_pipe_protocol should be defined on | Victor Stinner | 2014-01-27 | 4 | -75/+67 |
| * | Remove pipe_connection_made() from SubprocessProtocol | Victor Stinner | 2014-01-27 | 1 | -3/+0 |
| * | Merge with default | Victor Stinner | 2014-01-27 | 6 | -58/+278 |
| |\ |
|
| | * | Remove the artificial _pipe_connection_made() method | Victor Stinner | 2014-01-27 | 2 | -17/+10 |
| | * | replace read/write_pipe_protocol attributes with classic methods | Victor Stinner | 2014-01-26 | 3 | -66/+69 |
| | * | Add ReadSubprocessPipeStreamProto class | Victor Stinner | 2014-01-26 | 2 | -25/+38 |
| | * | Replace keywords with attributes | Victor Stinner | 2014-01-26 | 4 | -33/+15 |
| | * | No need to pass returncode to SubprocessProtocol.process_exited(), it can be | Victor Stinner | 2014-01-26 | 3 | -12/+10 |
| | * | Revert Gustavo Carneiro's patch to use StreamWriter without a reader | Victor Stinner | 2014-01-26 | 1 | -34/+1 |
| | * | Move new classes to subprocess_stream.py | Victor Stinner | 2014-01-26 | 5 | -195/+225 |
| | * | The loop is not needed in WriteSubprocessPipeStreamProto | Victor Stinner | 2014-01-26 | 1 | -13/+2 |
| | * | cleanup code | Victor Stinner | 2014-01-26 | 1 | -6/+5 |
| | * | Move classes to base_subprocess | Victor Stinner | 2014-01-26 | 2 | -193/+188 |
| | * | Implement "StreamWriter" for stdin | Victor Stinner | 2014-01-26 | 2 | -14/+131 |
| | * | Add SubprocessStreamProtocol | Victor Stinner | 2014-01-26 | 3 | -11/+114 |
| | * | Apply Gustavo Carneiro's patch to use StreamWriter without a reader | Victor Stinner | 2014-01-26 | 1 | -1/+32 |
| * | | 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 |
| * | wait_for() now cancels the future on timeout. Patch written by Gustavo | Victor Stinner | 2014-01-22 | 1 | -2/+4 |
| * | selectors: don't mention the Python bug | Victor Stinner | 2014-01-22 | 1 | -3/+1 |
| * | Cleanup logging in BaseEventLoop._run_once() | Victor Stinner | 2014-01-22 | 1 | -2/+5 |
| * | Restore asyncio/__init__.py to have the same file in Python 3.4 and Tulip | Victor Stinner | 2014-01-21 | 1 | -3/+7 |
| * | Fix timeout rounding issues in selectors | Victor Stinner | 2014-01-21 | 2 | -9/+22 |
| * | Optimize BaseEventLoop._run_once() | Victor Stinner | 2014-01-21 | 1 | -8/+11 |
| * | Reincarnate CoroWrapper's docstring as a comment. | Guido van Rossum | 2014-01-16 | 1 | -0/+2 |
| * | Fix CoroWrapper (fix my previous commit) | Victor Stinner | 2014-01-16 | 1 | -3/+1 |
| * | Issue #104: Fix a typo in CoroWrapper | Victor Stinner | 2014-01-16 | 1 | -1/+1 |
| * | Cleanup properly proactor event loop | Victor Stinner | 2014-01-10 | 2 | -4/+23 |
| * | Minimal pty support, by Jonathan Slenders. | Guido van Rossum | 2014-01-10 | 1 | -2/+5 |
| * | Fix race in subprocess transport, by Victor Stinner. Fixes issue 103. | Guido van Rossum | 2014-01-10 | 1 | -1/+2 |
| * | Tiny tweaks to code/docs. | Guido van Rossum | 2014-01-09 | 1 | -2/+2 |