├── .codecov.yml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.rst ├── CONTRIBUTORS.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ └── .keep │ ├── api.rst │ ├── conf.py │ ├── index.rst │ └── installation.rst ├── pyproject.toml ├── src └── hyperframe │ ├── __init__.py │ ├── exceptions.py │ ├── flags.py │ ├── frame.py │ └── py.typed └── tests ├── __init__.py ├── test_external_collection.py ├── test_flags.py └── test_frames.py /.codecov.yml: -------------------------------------------------------------------------------- 1 | comment: off 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/CONTRIBUTORS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/hyperframe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/src/hyperframe/__init__.py -------------------------------------------------------------------------------- /src/hyperframe/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/src/hyperframe/exceptions.py -------------------------------------------------------------------------------- /src/hyperframe/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/src/hyperframe/flags.py -------------------------------------------------------------------------------- /src/hyperframe/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/src/hyperframe/frame.py -------------------------------------------------------------------------------- /src/hyperframe/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_external_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/tests/test_external_collection.py -------------------------------------------------------------------------------- /tests/test_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/tests/test_flags.py -------------------------------------------------------------------------------- /tests/test_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-hyper/hyperframe/HEAD/tests/test_frames.py --------------------------------------------------------------------------------