| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Make socket.error with errno EBADF get raised as OSError. | Jason Madden | 2021-04-28 | 1 | -0/+35 |
| | | | | | Fixes #17 | ||||
| * | Merge pull request #6 from mindw/fix_win32_test | Victor Stinner | 2016-02-05 | 1 | -1/+1 |
| |\ | | | | | Fix win32 test | ||||
| | * | fix test on py2 win32 | Gabi Davar | 2015-11-13 | 1 | -1/+1 |
| | | | |||||
| * | | Ugly hack to support Python 3.5 with the PEP 479 | Victor Stinner | 2016-02-05 | 1 | -9/+25 |
| |/ | |||||
| * | Merge asyncio into trollius | Victor Stinner | 2015-09-08 | 4 | -17/+159 |
| |\ | |||||
| | * | Fix Task.get_stask() for 'async def' coroutineslistmaster | Yury Selivanov | 2015-08-14 | 1 | -0/+32 |
| | | | |||||
| | * | Fix asyncio tests on windows | Yury Selivanov | 2015-08-09 | 1 | -1/+5 |
| | | | |||||
| | * | queues: Fix getter-cancellation with many pending getters code path | Yury Selivanov | 2015-08-06 | 1 | -1/+36 |
| | | | | | | | | | | | This commit fixes a typo in a method call and adds a unittest to make sure that that code path is tested. | ||||
| | * | Merge PR #256: fix issue23812 of queues loosing items on cancellation | Yury Selivanov | 2015-08-05 | 1 | -1/+60 |
| | | | | | | | | | Patch by @gjcarneiro. | ||||
| | * | Fix ResourceWarning in BaseSubprocessTransport | Victor Stinner | 2015-07-31 | 1 | -0/+15 |
| | | | | | | | | | | | | | Python issue #24763: Fix resource warnings when BaseSubprocessTransport constructor fails, if subprocess.Popen raises an exception for example. Patch written by Martin Richard, test written by me. | ||||
| | * | Fix ResourceWarning warnings in test_streams | Victor Stinner | 2015-07-24 | 1 | -16/+12 |
| | | | |||||
| * | | Use the six module | Victor Stinner | 2015-07-13 | 3 | -3/+6 |
| | | | |||||
| * | | Fix sslproto when ssl is not available | Victor Stinner | 2015-07-13 | 1 | -2/+7 |
| | | | |||||
| * | | Fix Python 3.2 compat | Victor Stinner | 2015-07-11 | 1 | -3/+5 |
| | | | |||||
| * | | fix test_events on python 3.4.0 and 3.4.1 | Victor Stinner | 2015-07-09 | 1 | -2/+0 |
| | | | |||||
| * | | subprocess.Popen doesn't support context manager on Python 2 | Victor Stinner | 2015-07-09 | 1 | -3/+4 |
| | | | |||||
| * | | fix import | Victor Stinner | 2015-07-09 | 1 | -0/+1 |
| | | | |||||
| * | | get unittest from trollius.test_utils | Victor Stinner | 2015-07-09 | 17 | -109/+104 |
| | | | |||||
| * | | Merge branch 'master' into trollius | Victor Stinner | 2015-07-09 | 4 | -7/+9 |
| |\ \ | |/ | |||||
| | * | Replace Tulip with asyncio in test comments | Victor Stinner | 2015-07-09 | 4 | -7/+9 |
| | | | |||||
| * | | Fixes for Python 2.6 | Victor Stinner | 2015-07-09 | 4 | -17/+18 |
| | | | |||||
| * | | Python 2.7 fixes | Victor Stinner | 2015-07-09 | 8 | -59/+58 |
| | | | |||||
| * | | Fix Python 3.4 issues | Victor Stinner | 2015-07-09 | 6 | -37/+8 |
| | | | |||||
| * | | add test_asyncio.py | Victor Stinner | 2015-07-07 | 1 | -0/+141 |
| | | | |||||
| * | | Port asyncio to Python 2, tests/ directory | Victor Stinner | 2015-07-07 | 17 | -777/+875 |
| | | | |||||
| * | | Replace asyncio with trollius in code and config | Victor Stinner | 2015-07-06 | 16 | -131/+131 |
| |/ | |||||
| * | Fix CoroWrapper for 'async def' coroutines | Yury Selivanov | 2015-06-24 | 1 | -1/+2 |
| | | |||||
| * | Support PEP 492 native coroutines. | Yury Selivanov | 2015-05-11 | 2 | -3/+4 |
| | | |||||
| * | Use DeprecationWarning for async() | Yury Selivanov | 2015-05-11 | 1 | -1/+1 |
| | | |||||
| * | Deprecate async() function in favour of ensure_future() | Yury Selivanov | 2015-05-11 | 3 | -25/+31 |
| | | |||||
| * | Fix script_helper imports for 3.4 | Yury Selivanov | 2015-05-11 | 2 | -4/+14 |
| | | |||||
| * | Sync script_helper import with CPython | Yury Selivanov | 2015-05-11 | 2 | -2/+2 |
| | | |||||
| * | Add new loop APIs: set_task_factory() and get_task_factory() | Yury Selivanov | 2015-05-11 | 1 | -0/+36 |
| | | |||||
| * | Merge pull request #231 from haypo/issue_222 | Guido van Rossum | 2015-04-23 | 1 | -21/+44 |
| |\ | | | | | Fix @coroutine for functions without __name__ | ||||
| | * | Fix @coroutine for functions without __name__issue_222 | Victor Stinner | 2015-04-14 | 1 | -21/+44 |
| | | | | | | | | | | | | | | | | | Issue #222: Fix the @coroutine decorator for functions without __name__ attribute like functools.partial(). Enhance also the representation of a CoroWrapper if the coroutine function is a functools.partial(). | ||||
| * | | Fix queue join tests for CPython's test runner. | A. Jesse Jiryu Davis | 2015-04-20 | 1 | -4/+4 |
| | | | | | | | | | "python -m test" was running tests in the base class, which failed. | ||||
| * | | Test LifoQueue's and PriorityQueue's put() and task_done(). | A. Jesse Jiryu Davis | 2015-04-19 | 1 | -5/+19 |
| |/ | |||||
| * | Fix _SelectorTransport.__repr__() if the event loop is closed | Victor Stinner | 2015-03-27 | 1 | -0/+5 |
| | | |||||
| * | Fix warning in test_close_kill_running() | Victor Stinner | 2015-02-17 | 1 | -0/+1 |
| | | | | | | Read process exit status to avoid the "Caught subprocess termination from unknown pid" message. | ||||
| * | Python issue #23475: Fix test_close_kill_running() | Victor Stinner | 2015-02-17 | 1 | -2/+10 |
| | | | | | | | Really kill the child process, don't mock completly the Popen.kill() method. This change fix memory leaks and reference leaks. | ||||
| * | tests: Use os.devnull instead of hardcoded '/dev/null'. | Victor Stinner | 2015-02-17 | 1 | -3/+3 |
| | | | | | Patch written by Serhiy Storchaka <storchaka@gmail.com>. | ||||
| * | Merge branch remove-joinable-queue. | A. Jesse Jiryu Davis | 2015-02-14 | 1 | -5/+5 |
| |\ | |||||
| | * | Tulip issue #220: Merge JoinableQueue with Queue. | A. Jesse Jiryu Davis | 2015-01-23 | 1 | -5/+5 |
| | | | | | | | | | | | To more closely match the standard Queue, asyncio.Queue has "join" and "task_done". JoinableQueue is deleted. | ||||
| | * | test_selectors: use asyncio.test_support if test.support is missing | Victor Stinner | 2015-01-21 | 1 | -1/+4 |
| | | | |||||
| | * | Enhance BaseProactorEventLoop._loop_self_reading() | Victor Stinner | 2015-01-16 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | | * Handle correctly CancelledError: just exit * On error, log the exception and exit Don't try to close the event loop, it is probably running and so it cannot be closed. | ||||
| | * | tests: Remove unused function; inline another function | Victor Stinner | 2015-01-16 | 1 | -9/+1 |
| | | | |||||
| | * | Issue #22685: Fix test_pause_reading() of test_subprocess | Victor Stinner | 2015-01-15 | 1 | -2/+12 |
| | | | | | | | | | | | | | | | Override the connect_read_pipe() method of the loop to mock immediatly pause_reading() and resume_reading() methods. The test failed randomly on FreeBSD 9 buildbot and on Windows using trollius. | ||||
| | * | Python issue #23219: cancelling wait_for() now cancels the task | Victor Stinner | 2015-01-15 | 1 | -0/+27 |
| | | | |||||
| | * | Close transports in tests | Victor Stinner | 2015-01-15 | 4 | -3/+15 |
| | | | | | | | | | | | | | | | | | | | * Use test_utils.run_briefly() to execute pending calls to really close transports * sslproto: mock also _SSLPipe.shutdown(), it's need to close the transport * pipe test: the test doesn't close explicitly the PipeHandle, so ignore the warning instead * test_popen: use the context manager ("with p:") to explicitly close pipes | ||||
| | * | Python issue #23243: Close explicitly transports in tests | Victor Stinner | 2015-01-15 | 3 | -277/+226 |
| | | | |||||
