Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename the "asyncio" module to "trollius" to support Python 3.4 | Victor Stinner | 2014-05-20 | 1 | -0/+84 |
Add the following code at the top of your file to support Trollius and Tulip: try: # Use Trollius on Python <= 3.2 import trollius as asyncio except ImportError: # Use Tulip on Python 3.3, or builtin asyncio on Python 3.4+ import asyncio |