├── .gitattributes ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGES.rst ├── COPYING ├── MANIFEST.in ├── Makefile ├── README.rst ├── TODO.rst ├── appveyor.yml ├── check.py ├── doc ├── Makefile ├── asyncio.rst ├── changelog.rst ├── conf.py ├── deprecated.rst ├── dev.rst ├── index.rst ├── install.rst ├── libraries.rst ├── make.bat ├── trollius.jpg └── using.rst ├── examples ├── cacheclt.py ├── cachesvr.py ├── child_process.py ├── crawl.py ├── echo_client_tulip.py ├── echo_server_tulip.py ├── fetch0.py ├── fetch1.py ├── fetch2.py ├── fetch3.py ├── fuzz_as_completed.py ├── hello_callback.py ├── hello_coroutine.py ├── interop_asyncio.py ├── shell.py ├── simple_tcp_server.py ├── sink.py ├── source.py ├── source1.py ├── stacks.py ├── subprocess_attach_read_pipe.py ├── subprocess_attach_write_pipe.py ├── subprocess_shell.py ├── tcp_echo.py ├── timing_tcp_server.py └── udp_echo.py ├── overlapped.c ├── pypi.bat ├── releaser.conf ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── echo.py ├── echo2.py ├── echo3.py ├── keycert3.pem ├── pycacert.pem ├── sample.crt ├── sample.key ├── ssl_cert.pem ├── ssl_key.pem ├── test_asyncio.py ├── test_base_events.py ├── test_events.py ├── test_futures.py ├── test_locks.py ├── test_proactor_events.py ├── test_py33_exceptions.py ├── test_queues.py ├── test_selector_events.py ├── test_selectors.py ├── test_sslproto.py ├── test_streams.py ├── test_subprocess.py ├── test_tasks.py ├── test_transports.py ├── test_unix_events.py ├── test_windows_events.py └── test_windows_utils.py ├── tox.ini ├── trollius ├── __init__.py ├── base_events.py ├── base_subprocess.py ├── compat.py ├── constants.py ├── coroutines.py ├── events.py ├── executor.py ├── futures.py ├── locks.py ├── log.py ├── proactor_events.py ├── protocols.py ├── py27_weakrefset.py ├── py33_exceptions.py ├── py33_winapi.py ├── py3_ssl.py ├── queues.py ├── selector_events.py ├── selectors.py ├── sslproto.py ├── streams.py ├── subprocess.py ├── tasks.py ├── test_support.py ├── test_utils.py ├── time_monotonic.py ├── transports.py ├── unix_events.py ├── windows_events.py └── windows_utils.py ├── update-asyncio-step1.sh ├── update-asyncio-step2.sh └── update-asyncio-step3.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/README.rst -------------------------------------------------------------------------------- /TODO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/TODO.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/appveyor.yml -------------------------------------------------------------------------------- /check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/check.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/asyncio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/doc/asyncio.rst -------------------------------------------------------------------------------- /doc/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/doc/changelog.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/deprecated.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/doc/deprecated.rst -------------------------------------------------------------------------------- /doc/dev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/doc/dev.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/doc/install.rst -------------------------------------------------------------------------------- /doc/libraries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/doc/libraries.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/trollius.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/doc/trollius.jpg -------------------------------------------------------------------------------- /doc/using.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/doc/using.rst -------------------------------------------------------------------------------- /examples/cacheclt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/cacheclt.py -------------------------------------------------------------------------------- /examples/cachesvr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/cachesvr.py -------------------------------------------------------------------------------- /examples/child_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/child_process.py -------------------------------------------------------------------------------- /examples/crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/crawl.py -------------------------------------------------------------------------------- /examples/echo_client_tulip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/echo_client_tulip.py -------------------------------------------------------------------------------- /examples/echo_server_tulip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/echo_server_tulip.py -------------------------------------------------------------------------------- /examples/fetch0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/fetch0.py -------------------------------------------------------------------------------- /examples/fetch1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/fetch1.py -------------------------------------------------------------------------------- /examples/fetch2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/fetch2.py -------------------------------------------------------------------------------- /examples/fetch3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/fetch3.py -------------------------------------------------------------------------------- /examples/fuzz_as_completed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/fuzz_as_completed.py -------------------------------------------------------------------------------- /examples/hello_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/hello_callback.py -------------------------------------------------------------------------------- /examples/hello_coroutine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/hello_coroutine.py -------------------------------------------------------------------------------- /examples/interop_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/interop_asyncio.py -------------------------------------------------------------------------------- /examples/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/shell.py -------------------------------------------------------------------------------- /examples/simple_tcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/simple_tcp_server.py -------------------------------------------------------------------------------- /examples/sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/sink.py -------------------------------------------------------------------------------- /examples/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/source.py -------------------------------------------------------------------------------- /examples/source1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/source1.py -------------------------------------------------------------------------------- /examples/stacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/stacks.py -------------------------------------------------------------------------------- /examples/subprocess_attach_read_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/subprocess_attach_read_pipe.py -------------------------------------------------------------------------------- /examples/subprocess_attach_write_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/subprocess_attach_write_pipe.py -------------------------------------------------------------------------------- /examples/subprocess_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/subprocess_shell.py -------------------------------------------------------------------------------- /examples/tcp_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/tcp_echo.py -------------------------------------------------------------------------------- /examples/timing_tcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/timing_tcp_server.py -------------------------------------------------------------------------------- /examples/udp_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/examples/udp_echo.py -------------------------------------------------------------------------------- /overlapped.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/overlapped.c -------------------------------------------------------------------------------- /pypi.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/pypi.bat -------------------------------------------------------------------------------- /releaser.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/releaser.conf -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/setup.py -------------------------------------------------------------------------------- /tests/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/echo.py -------------------------------------------------------------------------------- /tests/echo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/echo2.py -------------------------------------------------------------------------------- /tests/echo3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/echo3.py -------------------------------------------------------------------------------- /tests/keycert3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/keycert3.pem -------------------------------------------------------------------------------- /tests/pycacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/pycacert.pem -------------------------------------------------------------------------------- /tests/sample.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/sample.crt -------------------------------------------------------------------------------- /tests/sample.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/sample.key -------------------------------------------------------------------------------- /tests/ssl_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/ssl_cert.pem -------------------------------------------------------------------------------- /tests/ssl_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/ssl_key.pem -------------------------------------------------------------------------------- /tests/test_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_asyncio.py -------------------------------------------------------------------------------- /tests/test_base_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_base_events.py -------------------------------------------------------------------------------- /tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_events.py -------------------------------------------------------------------------------- /tests/test_futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_futures.py -------------------------------------------------------------------------------- /tests/test_locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_locks.py -------------------------------------------------------------------------------- /tests/test_proactor_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_proactor_events.py -------------------------------------------------------------------------------- /tests/test_py33_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_py33_exceptions.py -------------------------------------------------------------------------------- /tests/test_queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_queues.py -------------------------------------------------------------------------------- /tests/test_selector_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_selector_events.py -------------------------------------------------------------------------------- /tests/test_selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_selectors.py -------------------------------------------------------------------------------- /tests/test_sslproto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_sslproto.py -------------------------------------------------------------------------------- /tests/test_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_streams.py -------------------------------------------------------------------------------- /tests/test_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_subprocess.py -------------------------------------------------------------------------------- /tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_tasks.py -------------------------------------------------------------------------------- /tests/test_transports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_transports.py -------------------------------------------------------------------------------- /tests/test_unix_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_unix_events.py -------------------------------------------------------------------------------- /tests/test_windows_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_windows_events.py -------------------------------------------------------------------------------- /tests/test_windows_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tests/test_windows_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/tox.ini -------------------------------------------------------------------------------- /trollius/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/__init__.py -------------------------------------------------------------------------------- /trollius/base_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/base_events.py -------------------------------------------------------------------------------- /trollius/base_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/base_subprocess.py -------------------------------------------------------------------------------- /trollius/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/compat.py -------------------------------------------------------------------------------- /trollius/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/constants.py -------------------------------------------------------------------------------- /trollius/coroutines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/coroutines.py -------------------------------------------------------------------------------- /trollius/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/events.py -------------------------------------------------------------------------------- /trollius/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/executor.py -------------------------------------------------------------------------------- /trollius/futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/futures.py -------------------------------------------------------------------------------- /trollius/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/locks.py -------------------------------------------------------------------------------- /trollius/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/log.py -------------------------------------------------------------------------------- /trollius/proactor_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/proactor_events.py -------------------------------------------------------------------------------- /trollius/protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/protocols.py -------------------------------------------------------------------------------- /trollius/py27_weakrefset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/py27_weakrefset.py -------------------------------------------------------------------------------- /trollius/py33_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/py33_exceptions.py -------------------------------------------------------------------------------- /trollius/py33_winapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/py33_winapi.py -------------------------------------------------------------------------------- /trollius/py3_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/py3_ssl.py -------------------------------------------------------------------------------- /trollius/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/queues.py -------------------------------------------------------------------------------- /trollius/selector_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/selector_events.py -------------------------------------------------------------------------------- /trollius/selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/selectors.py -------------------------------------------------------------------------------- /trollius/sslproto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/sslproto.py -------------------------------------------------------------------------------- /trollius/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/streams.py -------------------------------------------------------------------------------- /trollius/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/subprocess.py -------------------------------------------------------------------------------- /trollius/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/tasks.py -------------------------------------------------------------------------------- /trollius/test_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/test_support.py -------------------------------------------------------------------------------- /trollius/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/test_utils.py -------------------------------------------------------------------------------- /trollius/time_monotonic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/time_monotonic.py -------------------------------------------------------------------------------- /trollius/transports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/transports.py -------------------------------------------------------------------------------- /trollius/unix_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/unix_events.py -------------------------------------------------------------------------------- /trollius/windows_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/windows_events.py -------------------------------------------------------------------------------- /trollius/windows_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/trollius/windows_utils.py -------------------------------------------------------------------------------- /update-asyncio-step1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/update-asyncio-step1.sh -------------------------------------------------------------------------------- /update-asyncio-step2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/update-asyncio-step2.sh -------------------------------------------------------------------------------- /update-asyncio-step3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamadden/trollius/HEAD/update-asyncio-step3.sh --------------------------------------------------------------------------------