| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | | | | Wrap IncompleteRead in ChunkedEncodingError. | Cory Benfield | 2013-07-28 | 3 | -4/+16 | |
| | | |/ / / | |/| | | | ||||||
| * | | | | | Merge pull request #1501 from sigmavirus24/remove_setting_of_hooks | Kenneth Reitz | 2013-07-31 | 1 | -1/+0 | |
| |\ \ \ \ \ | | | | | | | | | | | | | Fix duplication of efforts caught by @dofelw | |||||
| | * | | | | | Fix duplication of efforts caught by @dofelw | Ian Cordasco | 2013-07-29 | 1 | -1/+0 | |
| | | | | | | | ||||||
| * | | | | | | Merge pull request #1506 from Lukasa/mockrequest | Kenneth Reitz | 2013-07-31 | 1 | -0/+4 | |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | Provide 'host' parameter to MockRequest. | |||||
| | * | | | | | | Provide 'host' parameter to MockRequest. | Cory Benfield | 2013-07-30 | 1 | -0/+4 | |
| | | |/ / / / | |/| | | | | ||||||
| * | | | | | | Merge pull request #1507 from buzztabapp/prepared-session-requests | Kenneth Reitz | 2013-07-31 | 3 | -48/+98 | |
| |\ \ \ \ \ \ | |/ / / / / |/| | | | | | Allow preparing of Requests from Session settings without sending. | |||||
| | * | | | | | Merge settings when creating PreparedRequest, don't copy Request. | Robert Estelle | 2013-07-31 | 3 | -87/+54 | |
| | | | | | | | ||||||
| | * | | | | | Add Session.prepare_request test case. | Robert Estelle | 2013-07-30 | 1 | -0/+17 | |
| | | | | | | | ||||||
| | * | | | | | Add Request.copy() test case. | Robert Estelle | 2013-07-30 | 1 | -0/+31 | |
| | | | | | | | ||||||
| | * | | | | | Shallow copy of Request fields in Request.copy() | Robert Estelle | 2013-07-30 | 1 | -6/+12 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This prevents e.g. modifying the headers of a copied request from affecting the headers of its source and vice versa. Copying is used with the intent to mutuate, so allowing this kind of mutation of fields makes sense. Is a deep copy better? | |||||
| | * | | | | | Skip unneccessary Request.copy in Session.request | Robert Estelle | 2013-07-30 | 1 | -4/+6 | |
| | | | | | | | ||||||
| | * | | | | | Prepare requests with session settings separately from sending. | Robert Estelle | 2013-07-30 | 2 | -34/+61 | |
| |/ / / / / | ||||||
| * | | | | | Merge pull request #1494 from Lukasa/close | Cory Benfield | 2013-07-27 | 1 | -0/+5 | |
| |\ \ \ \ \ | |_|_|_|/ |/| | | | | Document the Response.close() method. | |||||
| | * | | | | Document the Response.close() method. | Cory Benfield | 2013-07-25 | 1 | -0/+5 | |
| | |/ / / | ||||||
| * | | | | Merge pull request #1476 from sigmavirus24/add_copy_to_prepared_requests | Kenneth Reitz | 2013-07-26 | 1 | -0/+9 | |
| |\ \ \ \ | |/ / / |/| | | | [2.0] Add copy method to PreparedRequest objects | |||||
| | * | | | Add copy method to PreparedRequest objects | Ian Cordasco | 2013-07-20 | 1 | -1/+10 | |
| | | | | | ||||||
| * | | | | Comment markups, courtesy of @sigmavirus24 | Cory Benfield | 2013-07-24 | 1 | -2/+2 | |
| | | | | | ||||||
| * | | | | Merge pull request #1490 from Lukasa/cookiedocs | Kenneth Reitz | 2013-07-24 | 1 | -1/+4 | |
| |\ \ \ \ | |_|/ / |/| | | | Better cookie docs on sessions. | |||||
| | * | | | Better cookie docs on sessions. | Cory Benfield | 2013-07-24 | 1 | -1/+4 | |
| |/ / / | ||||||
| * | | | Merge pull request #1486 from sigmavirus24/use_urljoin | Kenneth Reitz | 2013-07-23 | 1 | -2/+2 | |
| |\ \ \ | | | | | | | | | Use urlparse.urljointo construct httpbin url | |||||
| | * | | | Derp. Use compat | Ian Cordasco | 2013-07-23 | 1 | -3/+2 | |
| | | | | | ||||||
| | * | | | Use urlparse.urljointo construct httpbin url | Ian Cordasco | 2013-07-23 | 1 | -1/+2 | |
| |/ / / | ||||||
| * | | | Merge pull request #1482 from dpursehouse/fix-testcases-with-proxy | Kenneth Reitz | 2013-07-23 | 2 | -2/+8 | |
| |\ \ \ | | | | | | | | | Fix test cases that fail when running behind a proxy | |||||
| | * | | | Fix test cases that fail when running behind a proxy | David Pursehouse | 2013-07-23 | 2 | -2/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When sending a request via `Session.send()` the proxies must be explicitly given with the `proxies` argument. This is not done in the test cases, which means that they fail when run on a system that is behind a proxy. Update test cases to make sure the proxies are set in the sessions. | |||||
| * | | | | Merge pull request #1483 from dpursehouse/httpbin-url-without-trailing-slash | Kenneth Reitz | 2013-07-23 | 1 | -0/+2 | |
| |\ \ \ \ | |/ / / |/| | | | Test cases fail when `HTTPBIN_URL` does not have trailing slash | |||||
| | * | | | Test cases fail when `HTTPBIN_URL` does not have trailing slash | David Pursehouse | 2013-07-23 | 1 | -0/+2 | |
| |/ / / | | | | | | | | | | | | | | | | | | | | | | Test cases can be run against a local httpbin server defined by the `HTTPBIN_URL` environment variable, but it causes tests to fail if the given URL does not end with a slash. Ensure that the URL always ends with a slash. | |||||
| * | | | Merge pull request #1479 from dpursehouse/fix-warnings | Kenneth Reitz | 2013-07-22 | 2 | -3/+2 | |
| |\ \ \ | | | | | | | | | Fix a few warnings flagged by PyDev | |||||
| | * | | | Fix a few warnings flagged by PyDev | David Pursehouse | 2013-07-22 | 2 | -3/+2 | |
| |/ / / | | | | | | | | | | | | | | | | - Unused import of urlparse - Unnecessary definition of variable - Incorrect indentation | |||||
| * | | | Merge pull request #1478 from dpursehouse/add-me-to-authors | Kenneth Reitz | 2013-07-22 | 1 | -0/+1 | |
| |\ \ \ | | | | | | | | | Add myself to the authors list | |||||
| | * | | | Add myself to the authors list | David Pursehouse | 2013-07-22 | 1 | -0/+1 | |
| |/ / / | ||||||
| * | | | Merge pull request #1477 from dpursehouse/other-auth-basic-example | Cory Benfield | 2013-07-21 | 1 | -4/+18 | |
| |\ \ \ | |/ / |/| | | Add a simple example of custom authentication in the documentation | |||||
| | * | | Add a simple example of custom authentication in the documentation | David Pursehouse | 2013-07-22 | 1 | -2/+14 | |
| | | | | | | | | | | | | | Refs #1471 | |||||
| | * | | Wrap long lines in the authentication documentation | David Pursehouse | 2013-07-22 | 1 | -2/+4 | |
| |/ / | ||||||
| * | | Merge pull request #1474 from Kwpolska/docfix | Kenneth Reitz | 2013-07-20 | 8 | -23/+24 | |
| |\ \ | | | | | | | Some tiny fixes to the documentation | |||||
| | * | | further treatment | Kwpolska | 2013-07-20 | 1 | -1/+1 | |
| | | | | | | | | | | | | | Signed-off-by: Kwpolska <kwpolska@gmail.com> | |||||
| | * | | session object should be uppercase | Kwpolska | 2013-07-20 | 1 | -2/+2 | |
| | | | | | | | | | | | | | Signed-off-by: Kwpolska <kwpolska@gmail.com> | |||||
| | * | | fixed underline | Kwpolska | 2013-07-20 | 1 | -1/+1 | |
| | | | | | | | | | | | | | Signed-off-by: Kwpolska <kwpolska@gmail.com> | |||||
| | * | | Grammar fixes and such | Kwpolska | 2013-07-20 | 5 | -8/+9 | |
| | | | | | | | | | | | | | Signed-off-by: Kwpolska <kwpolska@gmail.com> | |||||
| | * | | Some cosmetic updates to the docs | Kwpolska | 2013-07-20 | 6 | -11/+11 | |
| |/ / | | | | | | | Signed-off-by: Kwpolska <kwpolska@gmail.com> | |||||
| * | | Merge pull request #1470 from Lukasa/carset | Cory Benfield | 2013-07-19 | 1 | -3/+3 | |
| |\ \ | | | | | | | Remove charset from JSON types: not valid. | |||||
| | * | | Remove charset from JSON types: not valid. | Cory Benfield | 2013-07-19 | 1 | -3/+3 | |
| | | | | ||||||
| * | | | Merge pull request #1465 from dpursehouse/doc-netrc-authentication | Cory Benfield | 2013-07-19 | 1 | -0/+11 | |
| |\ \ \ | |/ / |/| | | Improve documentation of netrc authentication | |||||
| | * | | Move netrc authentication documentation under the Basic Auth section | David Pursehouse | 2013-07-19 | 1 | -11/+11 | |
| | | | | ||||||
| | * | | Improve documentation of netrc authentication | David Pursehouse | 2013-07-19 | 1 | -0/+11 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The documentation does not make it clear that when the credentials from netrc are used, Requests authenticates with HTTP Basic Auth. I just spent ages trying to figure out why it wasn't working, and it was because although the credentials in the netrc were correct, the server actually required HTTP Digest Auth. Add a section in the authentication documentation to make it clear that HTTP Basic Auth is used. | |||||
| * | | | Merge pull request #1466 from s7v7nislands/fix_doc | Cory Benfield | 2013-07-19 | 3 | -9/+4 | |
| |\ \ \ | |/ / |/| | | Fix doc | |||||
| | * | | merge | s7v7nislands | 2013-07-19 | 12 | -23/+73 | |
| | |\ \ | |/ / |/| | | ||||||
| * | | | Merge pull request #1464 from dpursehouse/document-none-not-sent | Cory Benfield | 2013-07-19 | 1 | -0/+3 | |
| |\ \ \ | | | | | | | | | Fix #1322: Add note in docs about None not being sent as data | |||||
| | * | | | Fix #1322: Add note in docs about None not being sent as data | David Pursehouse | 2013-07-19 | 1 | -0/+3 | |
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the case: payload = {'key1': 'value1', 'key2': 'value2', 'key3': None} r = requests.get("http://httpbin.org", params=payload) the parameter `key3` will not be sent as a parameter in the URL. Mention this in the documentation. | |||||
| * | | | Merge pull request #1463 from AudriusButkevicius/master | Kenneth Reitz | 2013-07-18 | 4 | -19/+24 | |
| |\ \ \ | | | | | | | | | Update urllib3 to a43319f | |||||
| | * | | | Update urllib3 to a43319f | Audrius Butkevicius | 2013-07-18 | 4 | -19/+24 | |
| |/ / / | ||||||
