summaryrefslogtreecommitdiff
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
* Merge with defaultVictor Stinner2014-01-311-0/+196
|\
| * Merge default -> subprocess_stream: whitespace cleanup, set_exception(<class>...Guido van Rossum2014-01-301-0/+196
| |\
| | * Fix unit testsVictor Stinner2014-01-301-5/+5
| | * "sleep 1" is not a valid shell command on WindowsVictor Stinner2014-01-301-2/+5
| | * Merge with defaultVictor Stinner2014-01-301-0/+193
| | |\
| | | * Fix _UnixWritePipeTransport: raise BrokenPipeError when the pipe is closedVictor Stinner2014-01-301-0/+13
| | | * test_subprocess: more tests from test_events.pyVictor Stinner2014-01-301-16/+68
| | | * Backout f9e077be6d3b (Add an optional loop parameter to get_child_watcher())Victor Stinner2014-01-291-15/+46
| | | * Drop call() functionVictor Stinner2014-01-291-10/+0
| | | * Allow to call get_subprocess() even if the process is deadVictor Stinner2014-01-291-0/+17
| | | * add a test on communicate()Victor Stinner2014-01-291-0/+24
| | | * add an unit test for stdin/stdoutVictor Stinner2014-01-291-3/+40
| | | * Add an optional loop parameter to get_child_watcher()Victor Stinner2014-01-291-0/+2
| | | * Add a first unit test for subprocessVictor Stinner2014-01-291-0/+27
* | | | Copy a bunch of fixes by Victor for the Proactor event loop from the CPython ...Guido van Rossum2014-01-312-2/+9
|/ / /
* | | Normalize whitespace (use "make pep8" to verify).Guido van Rossum2014-01-302-13/+14
* | | Future.set_exception(exc) now instanciate exc if it is a classVictor Stinner2014-01-301-0/+5
|/ /
* | subprocess_shell() and subprocess_exec() methods of BaseEventLoop now raises aVictor Stinner2014-01-291-0/+32
|/
* wait_for() now accepts None as timeoutVictor Stinner2014-01-281-0/+11
* Rename {Empty,Full} to {QueueEmpty,QueueFull} and no longer get them from que...Guido van Rossum2014-01-251-2/+2
* Locks refactor: use a separate context manager; remove Semaphore._locked.Guido van Rossum2014-01-251-0/+35
* Make the new granularity attribute privateVictor Stinner2014-01-261-2/+2
* Don't export BaseEventLoop, BaseSelectorEventLoop nor BaseProactorEventLoopVictor Stinner2014-01-254-8/+12
* Export more symbols: BaseEventLoop, BaseProactorEventLoop,Victor Stinner2014-01-255-48/+43
* Add a granularity attribute to BaseEventLoop: maximum between the resolution ofVictor Stinner2014-01-253-1/+30
* Issue #111: StreamReader.readexactly() now raises an IncompleteReadError if theVictor Stinner2014-01-241-2/+6
* Only skip PTY tests with the kqueue selectorVictor Stinner2014-01-241-6/+12
* _UnixWritePipeTransport now also supports character devices, asVictor Stinner2014-01-241-0/+50
* 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
* wait_for() now cancels the future on timeout. Patch written by GustavoVictor Stinner2014-01-221-15/+14
* Fix ResourceWarning in test_windows_events:Victor Stinner2014-01-111-0/+1
* Minimal pty support, by Jonathan Slenders.Guido van Rossum2014-01-101-0/+42
* Victor Stinner (CPython issue 19967): Future can have __del__ thanks to PEP 442.Guido van Rossum2013-12-191-1/+5
* Shorten lines.Guido van Rossum2013-12-191-1/+2
* Skip some tests if SNI not supported.Guido van Rossum2013-12-181-1/+7
* Relax some more timeouts.Guido van Rossum2013-12-181-2/+2
* Skip SSL tests with IOCP event loop.Guido van Rossum2013-12-061-2/+11
* SSL hostname checking changes from CPython repo by Christian Heimes.Guido van Rossum2013-12-065-17/+305
* Add Task.current_task([loop]). By Vladimir Kryachko.Guido van Rossum2013-12-051-0/+36
* Change proactor buffer management.Guido van Rossum2013-12-021-7/+7
* Incorporate selectors.py refactoring from CPython repo.Guido van Rossum2013-12-021-1/+1
* Make writelines() join the lines before calling write(). Fixes issue 92.Guido van Rossum2013-12-021-2/+8
* Replace some asserts with proper exceptions.Guido van Rossum2013-11-271-4/+5
* Support bytearray/memoryview arguments to write(), sendto(). Fixes issue 27.Guido van Rossum2013-11-271-0/+105
* Experimental bytearray buffer.Guido van Rossum2013-11-261-43/+46
* Fix amount of indentation -- CPython's precommit script complained.Guido van Rossum2013-11-271-5/+5
* Fix get_event_loop() to call set_event_loop() when setting the loop. By Antho...Guido van Rossum2013-11-271-0/+16
* Hopeful fix for CPython issue 19765.Guido van Rossum2013-11-251-0/+1