An error occurred fetching the project authors.
- 22 Jun, 2014 1 commit
-
-
Victor Stinner authored
event loop is running. You must first stop the event loop and then wait until it stopped, before closing it.
-
- 10 Jun, 2014 1 commit
-
-
Victor Stinner authored
Add BaseEventLoop._closed attribute and use it to check if the event loop was closed or not, instead of checking different attributes in each subclass of BaseEventLoop. run_forever() and run_until_complete() methods now raise a RuntimeError('Event loop is closed') exception if the event loop was closed. BaseProactorEventLoop.close() now also cancels "accept futures".
-
- 20 Feb, 2014 1 commit
-
-
Victor Stinner authored
The "exc" variable was not defined, pass a BrokenPipeError exception instead.
-
- 19 Feb, 2014 1 commit
-
-
Victor Stinner authored
Mention if the error was caused by a read or a write, and be more specific on the object (ex: "pipe transport" instead of "transport").
-
- 18 Feb, 2014 2 commits
-
-
Yury Selivanov authored
-
Yury Selivanov authored
-
- 13 Feb, 2014 1 commit
-
-
Victor Stinner authored
the address is not resolved (hostname instead of an IP address) for AF_INET and AF_INET6 address families.
-
- 20 Feb, 2014 1 commit
-
-
Victor Stinner authored
The "exc" variable was not defined, pass a BrokenPipeError exception instead.
-
- 19 Feb, 2014 1 commit
-
-
Victor Stinner authored
Mention if the error was caused by a read or a write, and be more specific on the object (ex: "pipe transport" instead of "transport").
-
- 18 Feb, 2014 2 commits
-
-
Yury Selivanov authored
-
Yury Selivanov authored
-
- 13 Feb, 2014 1 commit
-
-
Victor Stinner authored
the address is not resolved (hostname instead of an IP address) for AF_INET and AF_INET6 address families.
-
- 07 Feb, 2014 1 commit
-
-
Victor Stinner authored
* Remove selectors.BaseSelector.resolution attribute * Remove asyncio.BaseEventLoop._granularity attribute
-
- 04 Feb, 2014 1 commit
-
-
Victor Stinner authored
Do nothing if the pipe is already closed. _loop_writing() may call _force_close() when it gets ConnectionResetError.
-
- 01 Feb, 2014 1 commit
-
-
Victor Stinner authored
* Add a new asyncio.subprocess module * Add new create_subprocess_exec() and create_subprocess_shell() functions * The new asyncio.subprocess.SubprocessStreamProtocol creates stream readers for stdout and stderr and a stream writer for stdin. * The new asyncio.subprocess.Process class offers an API close to the subprocess.Popen class: - pid, returncode, stdin, stdout and stderr attributes - communicate(), wait(), send_signal(), terminate() and kill() methods * Remove STDIN (0), STDOUT (1) and STDERR (2) constants from base_subprocess and unix_events, to not be confused with the symbols with the same name of subprocess and asyncio.subprocess modules * _ProactorBasePipeTransport.get_write_buffer_size() now counts also the size of the pending write * _ProactorBaseWritePipeTransport._loop_writing() may now pause the protocol if the write buffer size is greater than the high water mark (64 KB by default)
-
- 31 Jan, 2014 2 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
Windows) instead of using the "duplex" pipe transport. The new class uses a simpler overlapped read to be notified when the pipe is closed. So the protocol doesn't need to implement eof_received(): connection_lost() is called instead. _UnixWritePipeTransport has the same approach.
-
- 29 Jan, 2014 1 commit
-
-
Victor Stinner authored
asyncio: _fatal_error() of _UnixWritePipeTransport and _ProactorBasePipeTransport shouldn't log BrokenPipeError nor ConnectionResetError. (Same behaviour as _SelectorTransport._fatal_error().)
-
- 25 Jan, 2014 1 commit
-
-
Victor Stinner authored
Major changes: - StreamReader.readexactly() now raises an IncompleteReadError if the end of stream is reached before we received enough bytes, instead of returning less bytes than requested. - Unit tests use the main asyncio module instead of submodules like events - _UnixWritePipeTransport now also supports character devices, as _UnixReadPipeTransport. Patch written by Jonathan Slenders. - Export more symbols: BaseEventLoop, BaseProactorEventLoop, BaseSelectorEventLoop, Queue and Queue sublasses, Empty, Full
-
- 10 Jan, 2014 1 commit
-
-
Victor Stinner authored
* store the "self reading" future when the "self pipe" is closed (when the event loop is closed) * store "accept" futures to cancel them when we stop serving * close the "accept socket" if the "accept future" is cancelled Fix many warnings which can be seen when unit tests are run in verbose mode.
-
- 04 Dec, 2013 1 commit
-
-
Guido van Rossum authored
-
- 30 Oct, 2013 1 commit
-
-
Guido van Rossum authored
asyncio: Add support for running subprocesses on Windows with the IOCP event loop (Richard Oudkerk).
-
- 19 Oct, 2013 1 commit
-
-
Antoine Pitrou authored
-
- 18 Oct, 2013 1 commit
-
-
Guido van Rossum authored
Rename Transport.pause/resume to pause_reading/pause_writing. Also relax timeout in test_call_later().
-
- 17 Oct, 2013 2 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-