summaryrefslogtreecommitdiff
path: root/tests/test_base_events.py
Commit message (Expand)AuthorAgeFilesLines
* Python issue #23243: Close explicitly event loops in testsVictor Stinner2015-01-151-0/+1
* Tests: explicitly close event loops and transportsVictor Stinner2015-01-141-0/+1
* Truncate to 80 columnsVictor Stinner2015-01-091-3/+6
* CPython doesn't have asyncio.test_supportVictor Stinner2014-12-261-8/+13
* Python issue #22926: In debug mode, call_soon(), call_at() and call_later()Victor Stinner2014-12-261-16/+60
* asyncio.test_support now uses test.support and test.script_helper if availableVictor Stinner2014-12-191-13/+8
* Copy a subset of test.support from CPython 3.5 to no more depend on the testVictor Stinner2014-12-181-4/+8
* Python issue #22429: Fix EventLoop.run_until_complete(), don't stop the eventVictor Stinner2014-12-051-0/+25
* Coroutine objects are now rejected with a TypeError by the following functions:Victor Stinner2014-11-201-11/+15
* Python issue #22641: On Python 3.4 and newer, the default SSL context forVictor Stinner2014-11-051-1/+1
* run_forever() now consumes BaseException of the temporary taskVictor Stinner2014-10-111-1/+21
* Improve canceled timer callback handles cleanup (CPython issue #22448)Yury Selivanov2014-09-251-7/+77
* Fix debug log in BaseEventLoop.create_connection(): get the socket object fromVictor Stinner2014-07-301-0/+3
* Clean up some docstrings and comments. Remove unused unimplemented _read_from...Guido van Rossum2014-07-121-2/+0
* Tulip issue #182: Improve logs of BaseEventLoop._run_once()Victor Stinner2014-07-111-0/+1
* Fix some pyflakes warnings: remove unused importsVictor Stinner2014-07-111-1/+0
* Tulip issue #185: Add a create_task() method to event loopsVictor Stinner2014-07-081-0/+24
* Tulip issue #137: In debug mode, save traceback where Future, Task and HandleVictor Stinner2014-06-271-3/+6
* Add test to check that run_until_complete() checks the loop of the futureVictor Stinner2014-06-251-0/+6
* Tulip issue #177: Rewite repr() of Future, Task, Handle and TimerHandleVictor Stinner2014-06-251-2/+2
* Make slow_select() test pass on Windows.Guido van Rossum2014-06-231-1/+2
* Tulip issue #172: only log selector timing in debug modeVictor Stinner2014-06-231-0/+3
* Add an unit test to check that setting the PYTHONASYNCIODEBUG env var enablesVictor Stinner2014-06-231-0/+24
* Tulip issue #105: in debug mode, log callbacks taking more than 100 ms to beVictor Stinner2014-06-201-0/+28
* Refactor tests: add a base TestCase classVictor Stinner2014-06-181-7/+4
* Refactor test__run_once_logging() to not rely on the exact number of calls toVictor Stinner2014-06-181-18/+11
* Tulip issue #169, Python issue #21326: Add BaseEventLoop.is_closed() methodVictor Stinner2014-06-041-0/+14
* cleanup test_base_events: cm variable was unusedVictor Stinner2014-06-041-1/+1
* Close sockets on errorsVictor Stinner2014-06-041-0/+21
* test_base_events: use mock.Mock instead of unittest.mock.Mock to simplify theVictor Stinner2014-05-201-1/+1
* Ensure call_soon(), call_later() and call_at() are invoked on current loop inVictor Stinner2014-03-211-0/+23
* Fix pyflakes warnings: remove unused variables and importsVictor Stinner2014-02-261-1/+1
* Replace "unittest.mock" with "mock" in unit testsVictor Stinner2014-02-261-54/+54
* Issue #136: Add get/set_debug() methods to BaseEventLoopTests. Add also aVictor Stinner2014-02-191-0/+6
* Fix spelling & typosYury Selivanov2014-02-181-1/+1
* Add new event loop exception handling API (closes issue #80).Yury Selivanov2014-02-181-14/+180
* Add support for UNIX Domain Sockets. Closes issue #81.Yury Selivanov2014-02-181-1/+1
* Issue #130: Add more checks on subprocess_exec/subprocess_shell parametersVictor Stinner2014-02-111-2/+52
* Issue #126: call_soon(), call_soon_threadsafe(), call_later(), call_at() andVictor Stinner2014-02-111-0/+18
* Remove resolution and _granularity from selectors and asyncioVictor Stinner2014-02-071-1/+2
* Cosmetic improvement to test__run_once_logging() mock argument.Guido van Rossum2014-02-041-5/+3
* Adjust unit tests regarding timings: tolerate slow buildbots, add a test on theVictor Stinner2014-02-041-7/+8
* Copy a bunch of fixes by Victor for the Proactor event loop from the CPython ...Guido van Rossum2014-01-311-2/+7
* Don't export BaseEventLoop, BaseSelectorEventLoop nor BaseProactorEventLoopVictor Stinner2014-01-251-1/+2
* Export more symbols: BaseEventLoop, BaseProactorEventLoop,Victor Stinner2014-01-251-2/+1
* Unit tests use the main asyncio module instead of submodules like eventsVictor Stinner2014-01-241-49/+46
* Relax timing (from upstream CPython repo).Guido van Rossum2013-11-231-1/+1
* Generalized error handling callback for DatastoreProtocol.Guido van Rossum2013-11-151-1/+1
* Avoid ResourceWarning. Fix for CPython issue 19580 by Vajrasky Kok.Guido van Rossum2013-11-141-4/+18
* Relax timing requirement. Fixes CPython issue 19579.Guido van Rossum2013-11-131-2/+2