Go to file
Victor Stinner 867b12b05c Rename the "asyncio" module to "trollius" to support Python 3.4
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
2014-05-20 15:28:32 +02:00
2014-05-20 11:19:32 +02:00
2014-05-20 11:24:36 +02:00
2014-05-20 11:19:32 +02:00
2014-03-08 12:02:05 +01:00
2014-01-09 10:05:10 +01:00
2014-05-20 11:19:32 +02:00
2014-02-09 00:40:58 +01:00
2014-05-20 11:20:10 +02:00
2014-05-20 11:19:32 +02:00
2014-03-04 12:49:14 +01:00
2014-02-28 11:21:10 +01:00
2014-01-21 00:22:49 +01:00

Trollius is a portage of the Tulip project (asyncio module, PEP 3156) on Python
2. Trollius works on Python 2.6-3.4. It has been tested on Windows, Linux,
Mac OS X, FreeBSD and OpenIndiana.

* Trollius website and documentation: http://trollius.readthedocs.org/
* Tulip project: http://code.google.com/p/tulip/
* Copyright/license: Open source, Apache 2.0. Enjoy.

See the "doc" subdirectory for more information.
Description
RETIRED, further work has moved to Debian project infrastructure
Readme 3.2 MiB
Languages
Python 95.7%
C 4%
Makefile 0.2%
Shell 0.1%