gitextract_3ml8fczj/ ├── .editorconfig ├── .flake8 ├── .github/ │ ├── ISSUE_TEMPLATE.md │ ├── release_log.py │ └── workflows/ │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .gitmodules ├── LICENSE-APACHE ├── LICENSE-MIT ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs/ │ ├── .gitignore │ ├── api/ │ │ └── index.rst │ ├── conf.py │ ├── dev/ │ │ └── index.rst │ ├── index.rst │ └── user/ │ └── index.rst ├── examples/ │ └── bench/ │ ├── echoclient.py │ ├── echoserver.py │ └── rlserver.py ├── mypy.ini ├── pyproject.toml ├── setup.py ├── tests/ │ ├── __init__.py │ ├── __main__.py │ ├── certs/ │ │ ├── ssl_cert.pem │ │ └── ssl_key.pem │ ├── test_aiohttp.py │ ├── test_base.py │ ├── test_context.py │ ├── test_cython.py │ ├── test_dealloc.py │ ├── test_dns.py │ ├── test_executors.py │ ├── test_fs_event.py │ ├── test_libuv_api.py │ ├── test_pipes.py │ ├── test_process.py │ ├── test_process_spawning.py │ ├── test_regr1.py │ ├── test_runner.py │ ├── test_signals.py │ ├── test_sockets.py │ ├── test_sourcecode.py │ ├── test_tcp.py │ ├── test_testbase.py │ ├── test_udp.py │ └── test_unix.py └── uvloop/ ├── .gitignore ├── __init__.py ├── _noop.py ├── _testbase.py ├── _version.py ├── cbhandles.pxd ├── cbhandles.pyx ├── dns.pyx ├── errors.pyx ├── handles/ │ ├── async_.pxd │ ├── async_.pyx │ ├── basetransport.pxd │ ├── basetransport.pyx │ ├── check.pxd │ ├── check.pyx │ ├── fsevent.pxd │ ├── fsevent.pyx │ ├── handle.pxd │ ├── handle.pyx │ ├── idle.pxd │ ├── idle.pyx │ ├── pipe.pxd │ ├── pipe.pyx │ ├── poll.pxd │ ├── poll.pyx │ ├── process.pxd │ ├── process.pyx │ ├── stream.pxd │ ├── stream.pyx │ ├── streamserver.pxd │ ├── streamserver.pyx │ ├── tcp.pxd │ ├── tcp.pyx │ ├── timer.pxd │ ├── timer.pyx │ ├── udp.pxd │ └── udp.pyx ├── includes/ │ ├── __init__.py │ ├── compat.h │ ├── consts.pxi │ ├── debug.h │ ├── debug.pxd │ ├── flowcontrol.pxd │ ├── fork_handler.h │ ├── python.pxd │ ├── stdlib.pxi │ ├── system.pxd │ └── uv.pxd ├── loop.pxd ├── loop.pyi ├── loop.pyx ├── lru.pyx ├── pseudosock.pyx ├── py.typed ├── request.pxd ├── request.pyx ├── server.pxd ├── server.pyx ├── sslproto.pxd └── sslproto.pyx