| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | The library raises NoneType error when file-pointer (fp) resolves to None. | Rajiv Mayani | 2018-05-17 | 1 | -0/+8 |
| | | | | | | | | | | | | | | >>> from requests import post >>> r = post("https://example.com", files={"file-name": None}) However, when a param value or json field is None they are not included in the request body. >>> from requests import get >>> r = get("https://example.com", params={"file-name": None}) >>> r.request.url This commit makes the beahviour consistent for files. | ||||
| * | Merge branch 'master' into master | David Poole | 2018-03-05 | 3 | -3/+143 |
| |\ | |||||
| | * | append previous url fragment on redirect | Nate Prewitt | 2018-01-21 | 2 | -0/+80 |
| | | | |||||
| | * | Fix DNS resolution by using hostname instead of netloc and strip username ↵ | Darren Dormer | 2018-01-16 | 1 | -2/+23 |
| | | | | | | | | | and password when comparing against proxy bypass items. | ||||
| | * | added more to test scenarios | dbairaktaris1 | 2018-01-04 | 1 | -1/+9 |
| | | | |||||
| | * | Continue to refactor, remove list comprehension, add double quotes test case. | dbairaktaris1 | 2018-01-04 | 1 | -4/+8 |
| | | | |||||
| | * | implement changes after code review | dbairaktaris1 | 2018-01-03 | 1 | -8/+0 |
| | | | |||||
| | * | Move nested function up to module level and rename. Add more tests for ↵ | dbairaktaris1 | 2018-01-01 | 1 | -1/+36 |
| | | | | | | | | | function. | ||||
| * | | Merge branch 'master' into master | David Poole | 2017-11-29 | 1 | -1/+6 |
| |\ \ | |/ | |||||
| | * | #4373, fix possible winreg value type difference (#4377) | Mingyuan Xia | 2017-11-20 | 1 | -1/+6 |
| | | | | | | | | | | | | | | | | | | | | | * #4373, fix possible winreg value type difference * add a test for ProxyOverride and ProxyEnable on win32 * add tests for winreg key ProxyEnable with two possible types * fixing AppVeyor failures | ||||
| * | | add test for HTTP Digest auth algorithms SHA-256 and SHA-512 | David Poole | 2017-11-29 | 1 | -41/+52 |
| |/ | |||||
| * | Check if host is invalid for proxy | Nehal J Wani | 2017-11-15 | 1 | -1/+14 |
| | | | | | | | | | According to RFC3986, the authority section can be empty for a given URL, however, for a proxy URL, it shouldn't be. This patch adds a check to verify that the parsed URL will have a valid host before creating the proxy manager. Fixes #4353 | ||||
| * | support extraction of certificate bundle from a zip archive | Arthur Vigil | 2017-11-05 | 1 | -1/+29 |
| | | |||||
| * | Split test in two better-defined tests | Alvaro Gutierrez Perez | 2017-10-19 | 1 | -2/+10 |
| | | |||||
| * | Add test for Session.get_adapter() prefix matching | Alvaro Gutierrez Perez | 2017-10-19 | 1 | -0/+18 |
| | | |||||
| * | Add test for Session.get_adapter() case-insensitivity | Alvaro Gutierrez Perez | 2017-10-19 | 1 | -0/+12 |
| | | |||||
| * | update tests | Kenneth Reitz | 2017-09-17 | 1 | -3/+3 |
| | | | | | Signed-off-by: Kenneth Reitz <me@kennethreitz.org> | ||||
| * | Add test case for empty `Link:` header | Remi Rampin | 2017-08-17 | 1 | -0/+4 |
| | | |||||
| * | Modifying tests to include header name info | mgasvoda | 2017-08-11 | 1 | -3/+6 |
| | | |||||
| * | Add failing test for #4209 | Cory Benfield | 2017-07-29 | 1 | -1/+10 |
| | | |||||
| * | Add idna version info to requests.help | Alex Chan | 2017-07-27 | 1 | -0/+19 |
| | | |||||
| * | test ssl version check functions as expected in python 2.6 | Nate Prewitt | 2017-07-04 | 1 | -0/+21 |
| | | |||||
| * | Fix a typo: paramters -> parameters | Felix Yan | 2017-06-12 | 1 | -1/+1 |
| | | |||||
| * | Remove exec permission from files that shouldn't have it | Justin Mayhew | 2017-06-10 | 2 | -1/+0 |
| | | |||||
| * | Merge remote-tracking branch 'upstream/master' | mlcrazy | 2017-06-09 | 1 | -0/+6 |
| |\ | |||||
| | * | Allow Requests.Response to be used as a context manager | Ed Morley | 2017-06-06 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This saves having to wrap the call to requests with `contextlib.closing()`, allowing it to be used directly in a `with` statement, like so: ``` with requests.get('http://httpbin.org/get', stream=True) as r: # Do things with the response here. ``` Fixes #4136. | ||||
| * | | Fixes error swallowing in set_environ | mlcrazy | 2017-06-09 | 1 | -2/+28 |
| |/ | |||||
| * | Fix requests.packages not having package attributes | Ryan Pineo | 2017-05-29 | 1 | -0/+13 |
| | | | | | Fixes #4104 | ||||
| * | new requests namespace | Kenneth Reitz | 2017-05-29 | 3 | -5/+5 |
| | | |||||
| * | skip for nowtravis2 | Kenneth Reitz | 2017-05-28 | 1 | -0/+1 |
| | | |||||
| * | todo | Kenneth Reitz | 2017-05-28 | 1 | -0/+1 |
| | | |||||
| * | fix tests | Kenneth Reitz | 2017-05-27 | 1 | -3/+3 |
| | | |||||
| * | test entrypoints | Kenneth Reitz | 2017-05-27 | 1 | -0/+2 |
| | | |||||
| * | remove bunk tests | Kenneth Reitz | 2017-05-26 | 1 | -10/+1 |
| | | |||||
| * | fix __init__.py | Kenneth Reitz | 2017-05-26 | 1 | -1/+1 |
| | | |||||
| * | more test removal of old imports | Kenneth Reitz | 2017-05-26 | 1 | -11/+2 |
| | | |||||
| * | remove test imports from packages | Kenneth Reitz | 2017-05-26 | 1 | -1/+1 |
| | | |||||
| * | Fix #4025 | Jonas Laursen | 2017-05-18 | 1 | -0/+4 |
| | | |||||
| * | We no longer downcase some hosts. | Cory Benfield | 2017-05-09 | 1 | -6/+6 |
| | | |||||
| * | proxy bypass on Windows without DNS lookups | schlamar | 2017-05-04 | 1 | -11/+16 |
| | | |||||
| * | test proxy bypass with config from registry | schlamar | 2017-05-04 | 1 | -0/+48 |
| | | |||||
| * | revert 8e6e47af and c121b98c | schlamar | 2017-05-04 | 1 | -73/+1 |
| | | |||||
| * | fix handle of non-ascii location on redirects | shmuelamar | 2017-04-18 | 1 | -9/+3 |
| | | |||||
| * | fix unicode decode error on py2 when handling redirect without scheme | shmuelamar | 2017-04-14 | 1 | -1/+38 |
| | | |||||
| * | oops! import Timeout as Urllib3Timeout | Alexander 'Leo' Bergolth | 2017-04-03 | 1 | -5/+5 |
| | | |||||
| * | use @pytest.mark.parametrize | Alexander 'Leo' Bergolth | 2017-04-03 | 1 | -50/+29 |
| | | |||||
| * | add some tests for passing in Timeout objects | Alexander 'Leo' Bergolth | 2017-04-02 | 1 | -0/+42 |
| | | |||||
| * | PR review fixes: | Bastien Gérard | 2017-03-22 | 1 | -8/+8 |
| | | | | | | | - used httpbin_secure for tests - updated docstring related to `verify` param" - used TLS acronym instead of SSL | ||||
| * | #3926 raise IOError when providing an invalid path to a CA bundle or ↵ | Bastien Gérard | 2017-03-22 | 1 | -0/+16 |
| | | | | | certificate files | ||||
| * | Fixed some typos (#3892) | Victor Pfautz | 2017-02-27 | 1 | -1/+1 |
| | | | | | * Fixed some typos | ||||
