summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/compat.py
Commit message (Collapse)AuthorAgeFilesLines
* asyncio: Remove asyncio/compat.py (#4606)Victor Stinner2017-11-281-6/+0
| | | | | | | | | | The asyncio/compat.py file was written to support Python < 3.5 and Python < 3.5.2. But Python 3.5 doesn't accept bugfixes anymore, only security fixes. There is no more need to backport bugfixes to Python 3.5, and so no need to have a single code base for Python 3.5, 3.6 and 3.7. Say hello (again) to "async" and "await", who became real keywords in Python 3.7 ;-)
* bpo-29617: Remove Python 3.3 support from asyncio (GH-232)INADA Naoki2017-04-251-12/+0
|
* Issue #27243: Fix __aiter__ protocolYury Selivanov2016-06-091-0/+1
|
* asyncio: Add asyncio.compat moduleVictor Stinner2015-07-251-0/+17
Move compatibility helpers for the different Python versions to a new asyncio.compat module.