summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Branch replaced with subprocess_stream branchsubproces-streamVictor Stinner2014-01-280-0/+0
* Fix SubprocessStreamProtocol.wait() if transport is not set yetVictor Stinner2014-01-271-3/+4
* Pipe protocols now notify the subprocess protocol using futures instead ofVictor Stinner2014-01-272-43/+54
* cleanup codeVictor Stinner2014-01-271-20/+15
* Remove useless eof_received() method and useless WritePipeStream classVictor Stinner2014-01-273-67/+2
* Oops, create_read_pipe_protocol/create_write_pipe_protocol should be defined onVictor Stinner2014-01-274-75/+67
* Remove pipe_connection_made() from SubprocessProtocolVictor Stinner2014-01-271-3/+0
* Merge with defaultVictor Stinner2014-01-277-58/+311
|\
| * Remove the artificial _pipe_connection_made() methodVictor Stinner2014-01-272-17/+10
| * replace read/write_pipe_protocol attributes with classic methodsVictor Stinner2014-01-263-66/+69
| * Add ReadSubprocessPipeStreamProto classVictor Stinner2014-01-262-25/+38
| * Get returncode in subprocess_stream exampleVictor Stinner2014-01-261-9/+10
| * Replace keywords with attributesVictor Stinner2014-01-265-35/+17
| * No need to pass returncode to SubprocessProtocol.process_exited(), it can beVictor Stinner2014-01-263-12/+10
| * Revert Gustavo Carneiro's patch to use StreamWriter without a readerVictor Stinner2014-01-262-39/+29
| * Move new classes to subprocess_stream.pyVictor Stinner2014-01-266-198/+227
| * Add subprocess_stream exampleVictor Stinner2014-01-261-0/+33
| * The loop is not needed in WriteSubprocessPipeStreamProtoVictor Stinner2014-01-261-13/+2
| * cleanup codeVictor Stinner2014-01-261-6/+5
| * Move classes to base_subprocessVictor Stinner2014-01-262-193/+188
| * Implement "StreamWriter" for stdinVictor Stinner2014-01-262-14/+131
| * Add SubprocessStreamProtocolVictor Stinner2014-01-263-11/+114
| * Apply Gustavo Carneiro's patch to use StreamWriter without a readerVictor Stinner2014-01-262-29/+37
* | 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-252-11/+21
* | Fix whitespace.Guido van Rossum2014-01-251-1/+1
* | Locks refactor: use a separate context manager; remove Semaphore._locked.Guido van Rossum2014-01-252-22/+95
* | 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-263-5/+5
* Simplify BaseEventLoop._run_once(): avoid math.ceil(), use simple arithmeticVictor Stinner2014-01-251-6/+1
* Don't export BaseEventLoop, BaseSelectorEventLoop nor BaseProactorEventLoopVictor Stinner2014-01-255-15/+13
* Strip trailing spaceVictor Stinner2014-01-251-1/+1
* Export more symbols: BaseEventLoop, BaseProactorEventLoop,Victor Stinner2014-01-258-53/+60
* Add a granularity attribute to BaseEventLoop: maximum between the resolution ofVictor Stinner2014-01-256-1/+41
* 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
* AUTHORS: remove Authors/Contributors titles, only mention that Guido is theVictor Stinner2014-01-241-31/+26
* Issue #111: StreamReader.readexactly() now raises an IncompleteReadError if theVictor Stinner2014-01-242-8/+22
* Only skip PTY tests with the kqueue selectorVictor Stinner2014-01-241-6/+12
* _UnixWritePipeTransport now also supports character devices, asVictor Stinner2014-01-243-4/+56
* Unit tests: pick symbols from the asyncio moduleVictor Stinner2014-01-241-5/+4
* Unit tests use the main asyncio module instead of submodules like eventsVictor Stinner2014-01-2411-812/+778
* Skip test_events.test_read_pty_output() on Mac OS X older than 10.9 (Maverick)Victor Stinner2014-01-231-0/+3
* 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
* wait_for() now cancels the future on timeout. Patch written by GustavoVictor Stinner2014-01-223-17/+19
* Create a list of authors and contributors based on the Mercurial historyVictor Stinner2014-01-221-0/+31
* selectors: don't mention the Python bugVictor Stinner2014-01-221-3/+1
* Cleanup logging in BaseEventLoop._run_once()Victor Stinner2014-01-221-2/+5
* Restore asyncio/__init__.py to have the same file in Python 3.4 and TulipVictor Stinner2014-01-211-3/+7