summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
Commit message (Expand)AuthorAgeFilesLines
* asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166.Guido van Rossum2014-04-272-0/+14
* asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163).Guido van Rossum2014-04-151-0/+47
* remove superfluous and useless lineBenjamin Peterson2014-04-161-1/+0
* asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctlyYury Selivanov2014-04-151-0/+18
* asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1Yury Selivanov2014-04-151-0/+25
* Issue #21155: asyncio.EventLoop.create_unix_server() now raises a ValueError ifVictor Stinner2014-04-071-0/+11
* Issue #20668: Remove tests.txt of test_asyncioVictor Stinner2014-03-311-14/+0
* asyncio.tests: Autodiscover asyncio tests. Patch by Vajrasky Kok. Closes #20668Yury Selivanov2014-03-271-12/+10
* asyncio: Ensure call_soon(), call_later() and call_at() are invoked on currentVictor Stinner2014-03-211-0/+23
* asyncio, Tulip issue 157: Improve test_events.py, avoid run_briefly() which isVictor Stinner2014-03-061-64/+65
* asyncio: Synchronize with TulipVictor Stinner2014-03-052-4/+50
* asyncio: simplify test_events.py, don't use non local variables and don't callVictor Stinner2014-02-261-186/+79
* asyncio: Fix pyflakes warnings: remove unused variables and importsVictor Stinner2014-02-267-25/+12
* asyncio: Replace "unittest.mock" with "mock" in unit testsVictor Stinner2014-02-2611-366/+366
* asyncio: _check_resolved_address() must also accept IPv6 without flow_info andVictor Stinner2014-02-201-3/+6
* asyncio: ops, and now fix also the unit test for IPv6 address:Victor Stinner2014-02-201-4/+3
* asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests.Victor Stinner2014-02-192-0/+34
* Issue #20682: Oops, fix test_create_connection() of test_asyncio (fix my prev...Victor Stinner2014-02-191-1/+1
* Close #20682: Fix UNIX sockets tests of test_asyncio on Mac OS X TigerVictor Stinner2014-02-191-5/+27
* asyncio: WriteTransport.set_write_buffer_size to call _maybe_pause_protocolYury Selivanov2014-02-191-0/+23
* asyncio: pep8-ify the code.Yury Selivanov2014-02-193-5/+17
* asyncio: Fix spelling and typos.Yury Selivanov2014-02-195-7/+6
* Issue #20682: test_asyncio, _basetest_create_connection() checks also theVictor Stinner2014-02-191-0/+1
* asyncio, Tulip issue 143: UNIX domain methods, fix ResourceWarning andVictor Stinner2014-02-191-13/+15
* asyncio, Tulip issue 139: Improve error messages on "fatal errors"Victor Stinner2014-02-193-16/+40
* asyncio: New error handling API. Issue #20681.Yury Selivanov2014-02-186-59/+258
* asyncio: Add support for UNIX Domain Sockets.Yury Selivanov2014-02-185-156/+475
* Issue #20667: KqueueEventLoopTests.test_read_pty_output() hangs also on OpenB...Victor Stinner2014-02-181-2/+3
* Issue #20667: test_asyncio: Skip KqueueEventLoopTests.test_read_pty_output() onVictor Stinner2014-02-181-0/+3
* Issue #20655: Fix test_asyncio, run also subprocess tests. Patch written byVictor Stinner2014-02-171-0/+1
* Fix test_asyncio/test_events.py: skip IPv6 if IPv6 is disabled on the hostVictor Stinner2014-02-131-1/+5
* ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error ifVictor Stinner2014-02-131-0/+12
* asyncio: Change as_completed() to use a Queue, to avoid O(N**2) behavior. Fix...Guido van Rossum2014-02-131-1/+22
* Issue #20495: Skip test_read_pty_output() of test_asyncio on FreeBSD older thanVictor Stinner2014-02-111-0/+2
* asyncio, Tulip issue 131: as_completed() and wait() now raises a TypeError ifVictor Stinner2014-02-111-0/+26
* asyncio, Tulip issue 130: Add more checks on subprocess_exec/subprocess_shellVictor Stinner2014-02-111-2/+52
* asyncio, Tulip issue 126: call_soon(), call_soon_threadsafe(), call_later(),Victor Stinner2014-02-114-12/+29
* Issue #20505: BaseEventLoop uses again the resolution of the clock to decide ifVictor Stinner2014-02-101-6/+6
* Issue #20505: Use even shorter sleep in test_timeout_rounding() to make theVictor Stinner2014-02-101-3/+5
* Issue #20505: Add debug info to analyze sporaric failures ofVictor Stinner2014-02-101-1/+4
* asyncio: Tulip issue 112: Inline make_handle() into Handle constructorVictor Stinner2014-02-091-2/+2
* asyncio: Remove Process.subprocess attribute; it's too easy to get inconsistentVictor Stinner2014-02-091-20/+0
* asyncio: Test fix.Guido van Rossum2014-02-091-1/+1
* asyncio tests: Remove scories of resolution/granularityVictor Stinner2014-02-092-3/+0
* Issue #20505: Remove resolution and _granularity from selectors and asyncioVictor Stinner2014-02-072-17/+9
* asyncio.tasks: Fix as_completed, gather & wait to work with duplicate coroutinesYury Selivanov2014-02-071-8/+47
* asyncio.streams.StreamReader: Add 'at_eof()' methodYury Selivanov2014-02-061-0/+15
* asyncio.streams: Use bytebuffer in StreamReader; Add assertion in feed_dataYury Selivanov2014-02-051-27/+52
* asyncio: Cosmetic improvement to test__run_once_logging() mock argument.Guido van Rossum2014-02-041-5/+3
* Oops, undo unwanted changes in test_asyncio: mistakes of my the last sync withVictor Stinner2014-02-033-8/+17