]> git.ipfire.org Git - thirdparty/httpx.git/commit
Httpcore interface (#804)
authorTom Christie <tom@tomchristie.com>
Wed, 8 Apr 2020 12:32:10 +0000 (13:32 +0100)
committerGitHub <noreply@github.com>
Wed, 8 Apr 2020 12:32:10 +0000 (13:32 +0100)
commit3046e920ea899c95987a7b912dee0cafcb6630ce
treeacda447c2f20bfbc894050978daf20586bc5decc
parent631ba97635262fc72556a1638bac42cc843fe2ea
Httpcore interface (#804)

* First pass as switching dispatchers over to httpcore interface

* Updates for httpcore interface

* headers in dispatch API as plain list of bytes

* Integrate against httpcore 0.6

* Integrate against httpcore interface

* Drop UDS, since not supported by httpcore

* Fix base class for mock dispatchers in tests

* Merge master and mark as potential '0.13.dev0' release
35 files changed:
httpx/__init__.py
httpx/__version__.py
httpx/_client.py
httpx/_config.py
httpx/_content_streams.py
httpx/_dispatch/asgi.py
httpx/_dispatch/base.py [deleted file]
httpx/_dispatch/connection.py [deleted file]
httpx/_dispatch/connection_pool.py [deleted file]
httpx/_dispatch/http11.py [deleted file]
httpx/_dispatch/http2.py [deleted file]
httpx/_dispatch/proxy_http.py [deleted file]
httpx/_dispatch/urllib3.py
httpx/_dispatch/wsgi.py
httpx/_exceptions.py
httpx/_models.py
setup.cfg
setup.py
tests/client/test_async_client.py
tests/client/test_auth.py
tests/client/test_cookies.py
tests/client/test_headers.py
tests/client/test_proxies.py
tests/client/test_queryparams.py
tests/client/test_redirects.py
tests/conftest.py
tests/dispatch/__init__.py [deleted file]
tests/dispatch/test_connection_pools.py [deleted file]
tests/dispatch/test_connections.py [deleted file]
tests/dispatch/test_http2.py [deleted file]
tests/dispatch/test_proxy_http.py [deleted file]
tests/dispatch/utils.py [deleted file]
tests/test_concurrency.py
tests/test_multipart.py
tests/test_utils.py