summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* asyncio: Change bounded semaphore into a subclass, like threading.[Bounded]Se...Guido van Rossum2013-11-231-1/+1
* asyncio: Use socketpair() from test_utils in tests (Saúl Ibarra Corretgé).Guido van Rossum2013-11-231-1/+1
* Relax timing even more, hopefully again fixes issue 19579.Guido van Rossum2013-11-231-1/+1
* asyncio: Pass cancellation from wrapping Future to wrapped Future. By Saúl I...Guido van Rossum2013-11-221-0/+18
* asyncio: Make Semaphore(0) work properly.Guido van Rossum2013-11-211-0/+4
* asyncio: Add streams.start_server(), by Gustavo Carneiro.Guido van Rossum2013-11-191-0/+66
* Relax timing on test_asyncio for busy (slow) Windows buildbotsVictor Stinner2013-11-181-1/+1
* Skip test_asyncio if concurrent.futures can't be imported. Hopeful fix for is...Guido van Rossum2013-11-181-5/+5
* asyncio: Replace connection_refused() with error_received().Guido van Rossum2013-11-163-13/+26
* asyncio: Longer timeout in Windows test_popen. Fixes issue 19598.Guido van Rossum2013-11-151-1/+2
* asyncio: Refactor waitpid mocks. Patch by Anthony Baire.Guido van Rossum2013-11-151-249/+186
* Issue #19589: Use specific asserts in asyncio tests.Serhiy Storchaka2013-11-143-10/+12
* asyncio: Avoid ResourceWarning. Fix issue 19580 by Vajrasky Kok.Guido van Rossum2013-11-141-4/+18
* asyncio: Relax timing requirement. Fixes issue 19579.Guido van Rossum2013-11-141-2/+2
* asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix).Guido van Rossum2013-11-132-14/+19
* Remove redundant test_selectors.py from test_asyncio.Guido van Rossum2013-11-072-150/+0
* asyncio: Add close() back to Unix selector event loop, to remove all signal h...Guido van Rossum2013-11-071-0/+16
* asyncio: Refactor SIGCHLD handling. By Anthony Baire.Guido van Rossum2013-11-042-130/+901
* asyncio: Locks improvements by Arnaud Faure: better repr(), change Conditio\Guido van Rossum2013-11-041-1/+70
* Relax test for process return code on Windows.Richard Oudkerk2013-11-021-2/+2
* asyncio: Slight rearrangement of tests for server_hostname=...Guido van Rossum2013-11-011-3/+4
* asyncio: Better-looking errors when ssl module cannot be imported. In part by...Guido van Rossum2013-11-011-0/+20
* asyncio: Various style nits.Guido van Rossum2013-11-013-12/+21
* asyncio: Document EventLoop.close().Guido van Rossum2013-11-011-0/+2
* asyncio: Refactor ssl transport ready loop (Nikolay Kim).Guido van Rossum2013-11-011-51/+83
* asyncio: Add server_hostname as create_connection() argument, with secure def...Guido van Rossum2013-11-011-0/+54
* asyncio: Pause accepting whenever accept() returns certain errors. Fixes asyn...Guido van Rossum2013-11-011-2/+11
* asyncio: Add support for running subprocesses on Windows with the IOCP event ...Guido van Rossum2013-10-302-40/+71
* asyncio: Make the IOCP proactor support "waitable" handles (Richard Oudkerk).Guido van Rossum2013-10-301-0/+40
* Fix asyncio issue #19293 (hangs on AIX).Guido van Rossum2013-10-221-8/+4
* Unsilence several asyncio AIX tests that no longer hang, and silence a new hang.Guido van Rossum2013-10-221-12/+3
* Switch subprocess stdin to a socketpair, attempting to fix issue #19293 (AIX ...Guido van Rossum2013-10-221-0/+7
* Avoid test_asyncio hang on AIX.Guido van Rossum2013-10-221-0/+3
* asyncio: be more lenient if we don't understand status returned by waitpid().Guido van Rossum2013-10-211-1/+1
* Skip one asyncio test when IPv6 isn't supported (Windows buildbots)Antoine Pitrou2013-10-201-0/+2
* Make various asyncio test files individually runnableAntoine Pitrou2013-10-208-0/+32
* Issue #19309: asyncio: make waitpid() wait for all child processes, not onlyCharles-François Natali2013-10-201-0/+20
* Break out of loop on EOF in asyncio echo test programs.Guido van Rossum2013-10-202-0/+4
* Un-backout e3ec6b17260c - the test fix was actually also necessaryAntoine Pitrou2013-10-201-2/+2
* Backout e3ec6b17260c after Guido's fixAntoine Pitrou2013-10-201-2/+2
* Issue #19305: try to fix sporadic test_asyncio failure on FreeBSD 10.0Antoine Pitrou2013-10-191-2/+5
* Try to fix test_asyncio dual stack test when creating an IPv6 socket failsAntoine Pitrou2013-10-191-2/+2
* Disable some subprocess tests that hang on AIX.Guido van Rossum2013-10-191-0/+9
* Skip the asyncio tests when threads are not available.Guido van Rossum2013-10-191-0/+5
* Write flow control for asyncio (includes asyncio.streams overhaul).Guido van Rossum2013-10-181-21/+21
* Relax some asyncio test timeouts (http://bugs.python.org/issue19285).Guido van Rossum2013-10-182-5/+5
* Rename Transport.pause/resume to pause_reading/pause_writing. Also relax time...Guido van Rossum2013-10-185-16/+16
* Rename the logger to plain "logger".Guido van Rossum2013-10-176-25/+25
* Make asyncio tests run on Windows.Guido van Rossum2013-10-173-2/+12
* Initial checkin of asyncio package (== Tulip, == PEP 3156).Guido van Rossum2013-10-1722-0/+8864