summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Fix Task.get_stask() for 'async def' coroutineslistmasterYury Selivanov2015-08-142-1/+37
* Fix asyncio tests on windowsYury Selivanov2015-08-091-1/+5
* queues: Fix getter-cancellation with many pending getters code pathYury Selivanov2015-08-062-2/+37
* Make sure BaseException is re-raised in SSLProtocolYury Selivanov2015-08-051-1/+6
* Merge PR #256: fix issue23812 of queues loosing items on cancellationYury Selivanov2015-08-052-10/+98
* Run asyncio with python nightly builds too on travisYury Selivanov2015-08-051-0/+1
* Use '==' operator instead of 'is'Yury Selivanov2015-08-041-1/+1
* Revert "tasks: Fix code style"Yury Selivanov2015-08-021-2/+3
* tasks: Fix code styleYury Selivanov2015-08-021-3/+2
* Use compat.PY34Victor Stinner2015-07-316-11/+13
* Fix ResourceWarning in BaseSubprocessTransportVictor Stinner2015-07-312-2/+22
* Fix ResourceWarning warnings in test_streamsVictor Stinner2015-07-241-16/+12
* remove unused importsVictor Stinner2015-07-195-8/+0
* Return True from StreamReader.eof_received() to fixGuido van Rossum2015-07-141-0/+19
* Issue #234: Drop JoinableQueue on Python 3.5+Victor Stinner2015-07-102-4/+12
* Merge pull request #254 from haypo/compatVictor Stinner2015-07-108-30/+35
|\
| * Add asyncio.compat moduleVictor Stinner2015-07-098-30/+35
|/
* replace tulip with asyncioVictor Stinner2015-07-094-3/+5
* Replace Tulip with asyncio in test commentsVictor Stinner2015-07-094-7/+9
* queues.py: import coroutine from .coroutinesVictor Stinner2015-07-091-1/+1
* Rerite READMEVictor Stinner2015-07-061-12/+61
* coroutines: Proxy cr_await and gi_yieldfrom in CoroWrapperYury Selivanov2015-07-031-0/+8
* Fix regression in 83ac3b8 (failed unittests in debug mode)Yury Selivanov2015-06-241-0/+2
* Fix CoroWrapper for 'async def' coroutinesYury Selivanov2015-06-242-11/+42
* Sync with CPython.Yury Selivanov2015-06-241-31/+17
* coroutines: Fix CoroWrapper to support native coroutinesYury Selivanov2015-05-311-1/+1
* Support Awaitables (pep 492) in @coroutine decoratorYury Selivanov2015-05-301-2/+13
* tasks: Drop useless code.Yury Selivanov2015-05-281-7/+2
* Use collections.abc.Coroutine for asyncio.iscoroutine() when available.Yury Selivanov2015-05-131-0/+8
* Enable 'async for' for StreamReader, 'async with' for locks in 3.5.Yury Selivanov2015-05-132-55/+67
* Make sure sys.set_coroutine_wrapper is called *only* when loop is running.Yury Selivanov2015-05-121-35/+45
* Support PEP 492 native coroutines.Yury Selivanov2015-05-116-27/+116
* Enable Travis-CI integrationYury Selivanov2015-05-111-0/+17
* Use DeprecationWarning for async()Yury Selivanov2015-05-112-2/+2
* Deprecate async() function in favour of ensure_future()Yury Selivanov2015-05-116-33/+54
* Fix script_helper imports for 3.4Yury Selivanov2015-05-112-4/+14
* Make sure that CPython 3.4 and older will import script_helperYury Selivanov2015-05-111-1/+4
* Sync script_helper import with CPythonYury Selivanov2015-05-113-3/+3
* Add new loop APIs: set_task_factory() and get_task_factory()Yury Selivanov2015-05-113-3/+69
* Rename the function arg to run_in_executor() to "func" to avoid confusion.Guido van Rossum2015-05-052-9/+9
* Merge pull request #231 from haypo/issue_222Guido van Rossum2015-04-234-32/+67
|\
| * Fix @coroutine for functions without __name__issue_222Victor Stinner2015-04-144-32/+67
* | Merge pull request #237 from ajdavis/update-queue-join-testsGuido van Rossum2015-04-201-4/+4
|\ \
| * | Fix queue join tests for CPython's test runner.A. Jesse Jiryu Davis2015-04-201-4/+4
|/ /
* | Merge pull request #236 from ajdavis/queue-join-fixGuido van Rossum2015-04-192-11/+32
|\ \
| * | Fix LifoQueue's and PriorityQueue's put() and task_done().A. Jesse Jiryu Davis2015-04-191-6/+13
| * | Test LifoQueue's and PriorityQueue's put() and task_done().A. Jesse Jiryu Davis2015-04-191-5/+19
|/ /
* | #230: Change official URL from tulip to asyncio in README.rstLudovic Gasc (GMLudo)2015-04-141-1/+1
|/
* Update README.rstAndrew Svetlov2015-04-131-1/+1
* Merge pull request #225 from Eyepea/add_pycharm_in_gitignoreAndrew Svetlov2015-04-111-0/+3
|\