summaryrefslogtreecommitdiff
path: root/src/urllib3/response.py
Commit message (Expand)AuthorAgeFilesLines
* Fix multi-frame Zstandard response decodingRogdham2023-05-141-2/+7
* Continue reading the response stream if there is buffered decompressed dataSeth Michael Larson2023-05-031-1/+1
* Fix HTTPResponse.read(0) when underlying buffer is empty (#2998)Quentin Pradet2023-04-291-1/+3
* Update pre-commit reposHasan Ramezani2023-02-011-1/+0
* Fix typos in HTTPResponse.getheaders() warningsKurt McKee2022-11-281-2/+2
* Use the typing namespace and from __future__ import annotationsBastian Venthur2022-11-211-67/+57
* Prevent issue in HTTPResponse().read() when decoded_content is True and then ...Ousret2022-11-201-0/+12
* Restore but deprecate HTTPResponse.getheaders() and .getheader() methodsQuentin Pradet2022-11-171-2/+15
* Standardize HTTPResponse.read(X) behavior regardless of compressionQuentin Pradet2022-11-141-38/+134
* Create BaseHTTPConnection APIsSeth Michael Larson2022-11-101-1/+2
* Use io.IOBase for readable, closed, and writeableSeth Michael Larson2022-11-071-7/+3
* Change HTTPConnection.getresponse() to return urllib3.HTTPResponseLevi2022-11-071-32/+16
* Fix `OverflowError` when TLS is used on some Python versionsIllia Volochii2022-07-191-3/+51
* Fix type hint of urllib3.response.BaseHTTPResponse.geturl (#2655)satoru2022-06-261-1/+1
* Add support for decoding ZstandardMauro Amico2022-06-231-0/+43
* Update mypy to 0.941Hasan Ramezani2022-03-151-1/+1
* Update pyupgrade and black. (#2555)Hasan Ramezani2022-01-311-2/+2
* Enable enforce_content_length=True by defaultNate Prewitt2022-01-021-1/+1
* Update mypy to 0.930Hasan Ramezani2021-12-221-1/+1
* Only use relative importsTimothy Pansino2021-10-151-1/+1
* Add type hints to test.with_dummyserver.test_socketlevel (#2436)Hasan Ramezani2021-10-041-2/+2
* Add type hints to test.with_dummyserver.test_connectionpoolSeth Michael Larson2021-09-201-1/+3
* Add support for native JSON request and response bodiesP. Sai Vinay2021-09-171-0/+14
* Explicitly chain or don't chain exceptions (#2340)Ran Benita2021-08-151-7/+7
* Specify the error code for mypy type ignoresHasan Ramezani2021-08-101-26/+26
* Allow setting HTTPResponse.urlQuentin Pradet2021-08-031-5/+12
* Remove a few unnecessary `# type: ignore` commentsQuentin Pradet2021-07-081-6/+1
* Add type hints to urllib3.responseHasan Ramezani2021-07-031-118/+153
* Add type hints to urllib3.connectionpoolHasan Ramezani2021-06-031-2/+6
* Add type hints to urllib3.poolmanager (#2232)Hasan Ramezani2021-05-311-1/+4
* Many minor code quality and readability improvementsShubhendra Singh Chauhan2021-03-141-2/+2
* Add type hints to collections and exceptions modulesJess Shapiro2021-03-081-1/+1
* Replace deprecated socket.error with OSErrorAaron Niskode-Dossett2020-12-231-3/+2
* Switch to Brotli C bindings for CPython, brotlicffi for non-CPython (#2099)Seth Michael Larson2020-12-051-1/+4
* Change return type of HTTPResponse.getheaders() to match CPythonSeth Michael Larson2020-11-281-2/+2
* Add BaseHTTPResponse base classSeth Michael Larson2020-11-281-126/+203
* Remove strict parameter (#2064)Hasan Ramezani2020-11-161-5/+0
* Remove support for Python 2 and 3.5Hugo van Kemenade2020-11-151-21/+13
* Sort imports with 'isort'Quentin Pradet2020-10-011-8/+9
* Enforce flake8-2020Quentin Pradet2020-09-281-5/+5
* Fix autodoc and intersphinx links in documentation (#1966)Seth Michael Larson2020-09-181-11/+11
* Remove 'Defensive' from non-timeout SSLError branchSeth Michael Larson2020-08-311-1/+1
* Wrap BaseSSLError into SSLError during response readsSeth Michael Larson2020-08-311-3/+3
* Remove unnecessary httplib exporthodbn2020-06-101-1/+0
* Add InvalidChunkLength errorhodbn2020-06-091-2/+3
* doco: Fix small typos (#1860)Tim Gates2020-04-201-1/+1
* Avoid hasattr in BrotliDecoder.decompress()David Vo2020-04-191-4/+3
* Drain connection after PoolManager redirect (#1817)Chris2020-04-031-0/+12
* Empty responses should have no lines.Benjamin Peterson2020-01-141-1/+1
* Add optional auto_close parameter to HTTPResponse (#1652)George Sakkis2019-07-261-5/+16