]> git.ipfire.org Git - thirdparty/httpx.git/commit
Switch to private module names (#785)
authorFlorimond Manca <florimond.manca@gmail.com>
Tue, 28 Jan 2020 14:34:43 +0000 (15:34 +0100)
committerTom Christie <tom@tomchristie.com>
Tue, 28 Jan 2020 14:34:43 +0000 (14:34 +0000)
commit82dc6f32f864d26677df8fc61249a7fc74c687e8
tree363694a214433c4e6cf5c4d20f576f4ab9747caa
parentc2eb0bd40f21b1c529c812c20e8aff0bf6af6f3b
Switch to private module names (#785)

* Rename modules

* Update names in package

* Fix tests

* Review docs
45 files changed:
docs/environment_variables.md
httpx/__init__.py
httpx/_api.py [moved from httpx/api.py with 98% similarity]
httpx/_auth.py [moved from httpx/auth.py with 98% similarity]
httpx/_backends/__init__.py [moved from httpx/backends/__init__.py with 100% similarity]
httpx/_backends/asyncio.py [moved from httpx/backends/asyncio.py with 98% similarity]
httpx/_backends/auto.py [moved from httpx/backends/auto.py with 98% similarity]
httpx/_backends/base.py [moved from httpx/backends/base.py with 99% similarity]
httpx/_backends/trio.py [moved from httpx/backends/trio.py with 97% similarity]
httpx/_client.py [moved from httpx/client.py with 98% similarity]
httpx/_config.py [moved from httpx/config.py with 99% similarity]
httpx/_content_streams.py [moved from httpx/content_streams.py with 99% similarity]
httpx/_decoders.py [moved from httpx/decoders.py with 99% similarity]
httpx/_dispatch/__init__.py [moved from httpx/dispatch/__init__.py with 100% similarity]
httpx/_dispatch/asgi.py [moved from httpx/dispatch/asgi.py with 97% similarity]
httpx/_dispatch/base.py [moved from httpx/dispatch/base.py with 96% similarity]
httpx/_dispatch/connection.py [moved from httpx/dispatch/connection.py with 96% similarity]
httpx/_dispatch/connection_pool.py [moved from httpx/dispatch/connection_pool.py with 97% similarity]
httpx/_dispatch/http11.py [moved from httpx/dispatch/http11.py with 96% similarity]
httpx/_dispatch/http2.py [moved from httpx/dispatch/http2.py with 97% similarity]
httpx/_dispatch/proxy_http.py [moved from httpx/dispatch/proxy_http.py with 96% similarity]
httpx/_dispatch/urllib3.py [moved from httpx/dispatch/urllib3.py with 96% similarity]
httpx/_dispatch/wsgi.py [moved from httpx/dispatch/wsgi.py with 96% similarity]
httpx/_exceptions.py [moved from httpx/exceptions.py with 97% similarity]
httpx/_models.py [moved from httpx/models.py with 99% similarity]
httpx/_status_codes.py [moved from httpx/status_codes.py with 100% similarity]
httpx/_utils.py [moved from httpx/utils.py with 99% similarity]
tests/client/test_auth.py
tests/client/test_cookies.py
tests/client/test_headers.py
tests/client/test_queryparams.py
tests/client/test_redirects.py
tests/dispatch/test_connection_pools.py
tests/dispatch/test_connections.py
tests/dispatch/test_proxy_http.py
tests/dispatch/utils.py
tests/models/test_responses.py
tests/models/test_url.py
tests/test_concurrency.py
tests/test_config.py
tests/test_content_streams.py
tests/test_decoders.py
tests/test_multipart.py
tests/test_utils.py
tests/utils.py