summaryrefslogtreecommitdiff
path: root/asyncio
Commit message (Expand)AuthorAgeFilesLines
* 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-276-58/+278
|\
| * 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
| * Replace keywords with attributesVictor Stinner2014-01-264-33/+15
| * 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-261-34/+1
| * Move new classes to subprocess_stream.pyVictor Stinner2014-01-265-195/+225
| * 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-261-1/+32
* | 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
* wait_for() now cancels the future on timeout. Patch written by GustavoVictor Stinner2014-01-221-2/+4
* 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
* Fix timeout rounding issues in selectorsVictor Stinner2014-01-212-9/+22
* Optimize BaseEventLoop._run_once()Victor Stinner2014-01-211-8/+11
* Reincarnate CoroWrapper's docstring as a comment.Guido van Rossum2014-01-161-0/+2
* Fix CoroWrapper (fix my previous commit)Victor Stinner2014-01-161-3/+1
* Issue #104: Fix a typo in CoroWrapperVictor Stinner2014-01-161-1/+1
* Cleanup properly proactor event loopVictor Stinner2014-01-102-4/+23
* Minimal pty support, by Jonathan Slenders.Guido van Rossum2014-01-101-2/+5
* Fix race in subprocess transport, by Victor Stinner. Fixes issue 103.Guido van Rossum2014-01-101-1/+2
* Tiny tweaks to code/docs.Guido van Rossum2014-01-091-2/+2