diff options
author | cyfraeviolae <cyfraeviolae> | 2024-04-03 03:10:44 -0400 |
---|---|---|
committer | cyfraeviolae <cyfraeviolae> | 2024-04-03 03:10:44 -0400 |
commit | 6d7ba58f880be618ade07f8ea080fe8c4bf8a896 (patch) | |
tree | b1c931051ffcebd2bd9d61d98d6233ffa289bbce /venv/lib/python3.11/site-packages/httptools | |
parent | 4f884c9abc32990b4061a1bb6997b4b37e58ea0b (diff) |
venv
Diffstat (limited to 'venv/lib/python3.11/site-packages/httptools')
-rw-r--r-- | venv/lib/python3.11/site-packages/httptools/__init__.py | 6 | ||||
-rw-r--r-- | venv/lib/python3.11/site-packages/httptools/__pycache__/__init__.cpython-311.pyc | bin | 0 -> 363 bytes | |||
-rw-r--r-- | venv/lib/python3.11/site-packages/httptools/__pycache__/_version.cpython-311.pyc | bin | 0 -> 215 bytes | |||
-rw-r--r-- | venv/lib/python3.11/site-packages/httptools/_version.py | 13 | ||||
-rw-r--r-- | venv/lib/python3.11/site-packages/httptools/parser/__init__.py | 5 | ||||
-rw-r--r-- | venv/lib/python3.11/site-packages/httptools/parser/__pycache__/__init__.cpython-311.pyc | bin | 0 -> 366 bytes | |||
-rw-r--r-- | venv/lib/python3.11/site-packages/httptools/parser/__pycache__/errors.cpython-311.pyc | bin | 0 -> 1456 bytes | |||
-rw-r--r-- | venv/lib/python3.11/site-packages/httptools/parser/errors.py | 30 | ||||
-rwxr-xr-x | venv/lib/python3.11/site-packages/httptools/parser/parser.cpython-311-x86_64-linux-gnu.so | bin | 0 -> 705800 bytes | |||
-rwxr-xr-x | venv/lib/python3.11/site-packages/httptools/parser/url_parser.cpython-311-x86_64-linux-gnu.so | bin | 0 -> 319392 bytes |
10 files changed, 54 insertions, 0 deletions
diff --git a/venv/lib/python3.11/site-packages/httptools/__init__.py b/venv/lib/python3.11/site-packages/httptools/__init__.py new file mode 100644 index 0000000..972053e --- /dev/null +++ b/venv/lib/python3.11/site-packages/httptools/__init__.py @@ -0,0 +1,6 @@ +from . import parser +from .parser import * # NOQA + +from ._version import __version__ # NOQA + +__all__ = parser.__all__ + ('__version__',) # NOQA diff --git a/venv/lib/python3.11/site-packages/httptools/__pycache__/__init__.cpython-311.pyc b/venv/lib/python3.11/site-packages/httptools/__pycache__/__init__.cpython-311.pyc Binary files differnew file mode 100644 index 0000000..4a085b9 --- /dev/null +++ b/venv/lib/python3.11/site-packages/httptools/__pycache__/__init__.cpython-311.pyc diff --git a/venv/lib/python3.11/site-packages/httptools/__pycache__/_version.cpython-311.pyc b/venv/lib/python3.11/site-packages/httptools/__pycache__/_version.cpython-311.pyc Binary files differnew file mode 100644 index 0000000..a602a67 --- /dev/null +++ b/venv/lib/python3.11/site-packages/httptools/__pycache__/_version.cpython-311.pyc diff --git a/venv/lib/python3.11/site-packages/httptools/_version.py b/venv/lib/python3.11/site-packages/httptools/_version.py new file mode 100644 index 0000000..51078cc --- /dev/null +++ b/venv/lib/python3.11/site-packages/httptools/_version.py @@ -0,0 +1,13 @@ +# This file MUST NOT contain anything but the __version__ assignment. +# +# When making a release, change the value of __version__ +# to an appropriate value, and open a pull request against +# the correct branch (master if making a new feature release). +# The commit message MUST contain a properly formatted release +# log, and the commit must be signed. +# +# The release automation will: build and test the packages for the +# supported platforms, publish the packages on PyPI, merge the PR +# to the target branch, create a Git tag pointing to the commit. + +__version__ = '0.6.1' diff --git a/venv/lib/python3.11/site-packages/httptools/parser/__init__.py b/venv/lib/python3.11/site-packages/httptools/parser/__init__.py new file mode 100644 index 0000000..ba371f5 --- /dev/null +++ b/venv/lib/python3.11/site-packages/httptools/parser/__init__.py @@ -0,0 +1,5 @@ +from .parser import * # NoQA +from .errors import * # NoQA +from .url_parser import * # NoQA + +__all__ = parser.__all__ + errors.__all__ + url_parser.__all__ # NoQA diff --git a/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/__init__.cpython-311.pyc b/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/__init__.cpython-311.pyc Binary files differnew file mode 100644 index 0000000..66bb6e5 --- /dev/null +++ b/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/__init__.cpython-311.pyc diff --git a/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/errors.cpython-311.pyc b/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/errors.cpython-311.pyc Binary files differnew file mode 100644 index 0000000..3043727 --- /dev/null +++ b/venv/lib/python3.11/site-packages/httptools/parser/__pycache__/errors.cpython-311.pyc diff --git a/venv/lib/python3.11/site-packages/httptools/parser/errors.py b/venv/lib/python3.11/site-packages/httptools/parser/errors.py new file mode 100644 index 0000000..bc24c46 --- /dev/null +++ b/venv/lib/python3.11/site-packages/httptools/parser/errors.py @@ -0,0 +1,30 @@ +__all__ = ('HttpParserError', + 'HttpParserCallbackError', + 'HttpParserInvalidStatusError', + 'HttpParserInvalidMethodError', + 'HttpParserInvalidURLError', + 'HttpParserUpgrade') + + +class HttpParserError(Exception): + pass + + +class HttpParserCallbackError(HttpParserError): + pass + + +class HttpParserInvalidStatusError(HttpParserError): + pass + + +class HttpParserInvalidMethodError(HttpParserError): + pass + + +class HttpParserInvalidURLError(HttpParserError): + pass + + +class HttpParserUpgrade(Exception): + pass diff --git a/venv/lib/python3.11/site-packages/httptools/parser/parser.cpython-311-x86_64-linux-gnu.so b/venv/lib/python3.11/site-packages/httptools/parser/parser.cpython-311-x86_64-linux-gnu.so Binary files differnew file mode 100755 index 0000000..15f83c7 --- /dev/null +++ b/venv/lib/python3.11/site-packages/httptools/parser/parser.cpython-311-x86_64-linux-gnu.so diff --git a/venv/lib/python3.11/site-packages/httptools/parser/url_parser.cpython-311-x86_64-linux-gnu.so b/venv/lib/python3.11/site-packages/httptools/parser/url_parser.cpython-311-x86_64-linux-gnu.so Binary files differnew file mode 100755 index 0000000..b341672 --- /dev/null +++ b/venv/lib/python3.11/site-packages/httptools/parser/url_parser.cpython-311-x86_64-linux-gnu.so |