| Commit message (Expand) | Author | Age | Files | Lines |
| * | Branch replaced with subprocess_stream branchsubproces-stream | Victor Stinner | 2014-01-28 | 0 | -0/+0 |
| * | 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 | 7 | -58/+311 |
| |\ |
|
| | * | 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 |
| | * | Get returncode in subprocess_stream example | Victor Stinner | 2014-01-26 | 1 | -9/+10 |
| | * | Replace keywords with attributes | Victor Stinner | 2014-01-26 | 5 | -35/+17 |
| | * | 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 | 2 | -39/+29 |
| | * | Move new classes to subprocess_stream.py | Victor Stinner | 2014-01-26 | 6 | -198/+227 |
| | * | Add subprocess_stream example | Victor Stinner | 2014-01-26 | 1 | -0/+33 |
| | * | 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 | 2 | -29/+37 |
| * | | 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 | 2 | -11/+21 |
| * | | 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 | 2 | -22/+95 |
| * | | 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 | 3 | -5/+5 |
| * | 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 | 5 | -15/+13 |
| * | Strip trailing space | Victor Stinner | 2014-01-25 | 1 | -1/+1 |
| * | Export more symbols: BaseEventLoop, BaseProactorEventLoop, | Victor Stinner | 2014-01-25 | 8 | -53/+60 |
| * | Add a granularity attribute to BaseEventLoop: maximum between the resolution of | Victor Stinner | 2014-01-25 | 6 | -1/+41 |
| * | 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 |
| * | AUTHORS: remove Authors/Contributors titles, only mention that Guido is the | Victor Stinner | 2014-01-24 | 1 | -31/+26 |
| * | Issue #111: StreamReader.readexactly() now raises an IncompleteReadError if the | Victor Stinner | 2014-01-24 | 2 | -8/+22 |
| * | Only skip PTY tests with the kqueue selector | Victor Stinner | 2014-01-24 | 1 | -6/+12 |
| * | _UnixWritePipeTransport now also supports character devices, as | Victor Stinner | 2014-01-24 | 3 | -4/+56 |
| * | Unit tests: pick symbols from the asyncio module | Victor Stinner | 2014-01-24 | 1 | -5/+4 |
| * | Unit tests use the main asyncio module instead of submodules like events | Victor Stinner | 2014-01-24 | 11 | -812/+778 |
| * | Skip test_events.test_read_pty_output() on Mac OS X older than 10.9 (Maverick) | Victor Stinner | 2014-01-23 | 1 | -0/+3 |
| * | 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 | 3 | -17/+19 |
| * | Create a list of authors and contributors based on the Mercurial history | Victor Stinner | 2014-01-22 | 1 | -0/+31 |
| * | 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 |