summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* | replace Tulip with asyncioVictor Stinner2015-07-094-24/+23
* | README: replace Tulip with asyncioVictor Stinner2015-07-091-4/+5
* | pick README from trolliusVictor Stinner2015-07-092-76/+24
* | tox.ini: fix py2_releaseVictor Stinner2015-07-091-1/+3
* | Fixes for Python 2.6Victor Stinner2015-07-098-22/+24
* | Python 2.7 fixesVictor Stinner2015-07-0925-165/+161
* | Fix Python 3.4 issuesVictor Stinner2015-07-0917-63/+60
* | remove asyncio changelogVictor Stinner2015-07-081-332/+0
* | use releaserVictor Stinner2015-07-082-517/+7
* | Add TODO.rst from TrolliusVictor Stinner2015-07-082-1/+21
* | Port remaining filesVictor Stinner2015-07-083-49/+67
* | Port overlapped.cVictor Stinner2015-07-081-4/+67
* | replace update_stdlib with update-tulipVictor Stinner2015-07-084-70/+54
* | copy files from trolliusVictor Stinner2015-07-085-63/+106
* | Add interop_asyncio.py exampleVictor Stinner2015-07-071-0/+53
* | Port asyncio to Python 2, examples/ directoryVictor Stinner2015-07-0725-253/+340
* | add test_asyncio.pyVictor Stinner2015-07-071-0/+141
* | Add documentationVictor Stinner2015-07-0710-0/+1733
* | Port asyncio to Python 2, tests/ directoryVictor Stinner2015-07-0717-777/+875
* | Port asyncio to Python 2, trollius/ directoryVictor Stinner2015-07-0722-785/+1319
* | Add compatibility files from old trollius projectVictor Stinner2015-07-067-0/+907
* | Replace asyncio with trollius in code and configVictor Stinner2015-07-0644-181/+181
* | rename asyncio/ directory to trollius/Victor Stinner2015-07-0624-0/+0
|/
* 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
|/ /