summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_base_events.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #23972: Fix tests for Windows and Debian.Guido van Rossum2015-10-061-4/+1
* Issue #23972: updates to asyncio datagram API. By Chris Laws.Guido van Rossum2015-10-051-2/+138
* asyncio: Support PEP 492. Issue #24017.Yury Selivanov2015-05-121-1/+2
* asyncio: async() function is deprecated in favour of ensure_future().Yury Selivanov2015-05-111-3/+3
* Sync asyncio changes from the main repo.Yury Selivanov2015-05-111-2/+43
* Issue #23243: Close explicitly event loops in asyncio testsVictor Stinner2015-01-151-0/+1
* asyncio: sync with TulipVictor Stinner2015-01-141-0/+1
* asyncio: Truncate to 80 columnsVictor Stinner2015-01-081-3/+6
* Issue #22926: In debug mode, call_soon(), call_at() and call_later() methods ofVictor Stinner2014-12-261-16/+60
* asyncio: sync with TulipVictor Stinner2014-12-261-1/+1
* asyncio: sync with TulipVictor Stinner2014-12-181-4/+8
* Closes #22429, asyncio: Fix EventLoop.run_until_complete(), don't stop theVictor Stinner2014-12-051-0/+25
* asyncio: Coroutine objects are now rejected with a TypeError by the followingVictor Stinner2014-11-201-11/+15
* Issue #22186: Fix typos in Lib/.Berker Peksag2014-10-191-1/+1
* Issue #22601: run_forever() now consumes BaseException of the temporary taskVictor Stinner2014-10-111-1/+21
* asyncio: Improve canceled timer handles cleanup. Closes issue #22448.Yury Selivanov2014-09-251-7/+77
* asyncio: sync with TulipVictor Stinner2014-08-251-0/+3
* asyncio: sync with TulipVictor Stinner2014-07-141-2/+0
* asyncio: sync with TulipVictor Stinner2014-07-111-1/+1
* asyncio: sync with TulipVictor Stinner2014-07-081-0/+24
* asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task andVictor Stinner2014-06-271-3/+6
* asyncio: sync with TulipVictor Stinner2014-06-251-0/+6
* asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandleVictor Stinner2014-06-251-2/+2
* asyncio: Log an error if a Task is destroyed while it is still pendingVictor Stinner2014-06-241-1/+2
* asyncio, Tulip issue 172: only log selector timing in debug modeVictor Stinner2014-06-221-0/+3
* asyncio: Add an unit test to check that setting the PYTHONASYNCIODEBUG env varVictor Stinner2014-06-221-0/+24
* asyncio, Tulip issue 105: in debug mode, log callbacks taking more than 100 msVictor Stinner2014-06-201-0/+28
* asyncio: Refactor tests: add a base TestCase classVictor Stinner2014-06-171-7/+4
* asyncio: Refactor test__run_once_logging() to not rely on the exact number ofVictor Stinner2014-06-171-18/+11
* Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoopVictor Stinner2014-06-101-0/+14
* cleanup test_asyncio/test_base_events.py: cm variable was unusedVictor Stinner2014-06-031-1/+1
* Issue #21119: asyncio now closes sockets on errorsVictor Stinner2014-06-031-0/+21
* asyncio: test_base_events: use mock.Mock instead of unittest.mock.Mock toVictor Stinner2014-05-201-1/+1
* asyncio: Ensure call_soon(), call_later() and call_at() are invoked on currentVictor Stinner2014-03-211-0/+23
* asyncio: Fix pyflakes warnings: remove unused variables and importsVictor Stinner2014-02-261-1/+1
* asyncio: Replace "unittest.mock" with "mock" in unit testsVictor Stinner2014-02-261-54/+54
* asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests.Victor Stinner2014-02-191-0/+6
* asyncio: Fix spelling and typos.Yury Selivanov2014-02-191-1/+1
* asyncio: New error handling API. Issue #20681.Yury Selivanov2014-02-181-14/+180
* asyncio: Add support for UNIX Domain Sockets.Yury Selivanov2014-02-181-1/+1
* 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-111-0/+18
* Issue #20505: Remove resolution and _granularity from selectors and asyncioVictor Stinner2014-02-071-1/+2
* 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-031-7/+8
* Issue #20400: Merge Tulip into Python: add the new asyncio.subprocess moduleVictor Stinner2014-02-011-8/+7
* Issue #20452: Fix test_time_and_call_at() of test_asyncio on WindowsVictor Stinner2014-02-011-7/+8
* Issue #20452: test_asyncio: Add more info if the test failsVictor Stinner2014-01-311-2/+7
* asyncio: Don't export BaseEventLoop, BaseSelectorEventLoop norVictor Stinner2014-01-251-1/+2
* Update asyncio from the Tulip projectVictor Stinner2014-01-251-51/+47