| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Improved content encoding detection. | Jon Parise | 2013-09-03 | 1 | -1/+5 |
| | | | | | | | | | | | | | get_encodings_from_content() can now detect HTML in-document content encoding declarations in the following formats: - HTML5 - HTML4 - XHTML 1.x served with text/html MIME type - XHTML 1.x served as XML Ref: http://www.w3.org/International/questions/qa-html-encoding-declarations | ||||
| * | Skip cookie extraction if necessary | Ian Cordasco | 2013-08-16 | 1 | -0/+3 |
| | | | | | | If _original_response is never set/is None, then don't try to extract cookies from the response. | ||||
| * | Merge pull request #1508 from dieterv/master | Kenneth Reitz | 2013-07-31 | 1 | -3/+0 |
| |\ | | | | | remove duplicate comment | ||||
| | * | remove duplicate comment | Dieter Verfaillie | 2013-07-31 | 1 | -3/+0 |
| | | | | | | | This is already mentioned at line 357... | ||||
| * | | Merge pull request #1500 from gavrie/master2.0 | Kenneth Reitz | 2013-07-31 | 4 | -13/+22 |
| |\ \ | | | | | | | Update urllib3 to d89d508 | ||||
| | * | | Update urllib3 to d89d508 | Gavrie Philipson | 2013-07-29 | 4 | -13/+22 |
| | |/ | |||||
| * | | Merge pull request #1498 from Lukasa/incompleteread | Kenneth Reitz | 2013-07-31 | 3 | -4/+16 |
| |\ \ | | | | | | | Wrap IncompleteRead in ChunkedEncodingError. | ||||
| | * | | 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 settings when creating PreparedRequest, don't copy Request. | Robert Estelle | 2013-07-31 | 2 | -56/+54 |
| | | | | |||||
| * | | | 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 |
| | | | |||||
| * | | Better cookie docs on sessions. | Cory Benfield | 2013-07-24 | 1 | -1/+4 |
| | | | |||||
| * | | Fix test cases that fail when running behind a proxy | David Pursehouse | 2013-07-23 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | 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. | ||||
| * | | 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 | ||||
| * | Update urllib3 to a43319f | Audrius Butkevicius | 2013-07-18 | 4 | -19/+24 |
| | | |||||
| * | Merge pull request #1440 from fcurella/patch-0 | Kenneth Reitz | 2013-07-15 | 1 | -0/+5 |
| |\ | | | | | unquote double-quotes cookie values | ||||
| | * | keep the double quotes, but don't escape them | Flavio Curella | 2013-07-01 | 1 | -1/+1 |
| | | | |||||
| | * | unquote double-quotes cookie values | Flavio Curella | 2013-07-01 | 1 | -0/+5 |
| | | | |||||
| * | | Merge pull request #1439 from voberoi/master | Kenneth Reitz | 2013-07-15 | 1 | -2/+2 |
| |\ \ | | | | | | | Make sure netrc doesn't override any authentication settings explicitly set by the client | ||||
| | * | | .netrc settings shouldn't blow away explicit auth settings on a session | Vikram Oberoi | 2013-06-27 | 1 | -2/+2 |
| | |/ | |||||
| * | | Merge pull request #1441 from Lukasa/1395 | Kenneth Reitz | 2013-07-15 | 1 | -1/+1 |
| |\ \ | | | | | | | Remove urllib3-specific kwargs from non-urllib3 branch. | ||||
| | * | | Remove urllib3-specific kwargs from general code | Cory Benfield | 2013-07-04 | 1 | -1/+1 |
| | |/ | |||||
| * | | Set 208 status_code to "already_reported" | Philippe Ndiaye | 2013-07-13 | 1 | -0/+1 |
| | | | |||||
| * | | Changed the "im_used" informational status code for the value given by IANA ↵ | Philippe Ndiaye | 2013-07-13 | 1 | -1/+1 |
| |/ | | | | | (226) See RFC 3229 at http://tools.ietf.org/html/rfc3229#section-10.4.1 and HTTP status codes at http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml | ||||
| * | @1434 Fix https://github.com/kennethreitz/requests/issues/1434 | Chen Huang | 2013-06-25 | 1 | -1/+1 |
| | | |||||
| * | Use the new urllib3 stream generator. | Cory Benfield | 2013-06-18 | 1 | -5/+12 |
| | | |||||
| * | Update urllib3 to cffbd6b317 | Cory Benfield | 2013-06-18 | 2 | -1/+38 |
| | | |||||
| * | Don't reuse PreparedRequest on redirects | Roman Haritonov | 2013-06-08 | 1 | -9/+7 |
| | | |||||
| * | Merge pull request #1400 from jam/master | Kenneth Reitz | 2013-06-08 | 2 | -17/+15 |
| |\ | | | | | Retrieve environment proxies using standard library functions | ||||
| | * | Use urllib to retrieve environment proxies. | James Clarke | 2013-05-31 | 2 | -17/+15 |
| | | | | | | | This has the added benefit of including proxies defined by the OS X System Configuration framework and in the Windows registry, rather than only checking os.environ. | ||||
| * | | Merge pull request #1334 from rcarz/master | Kenneth Reitz | 2013-06-08 | 1 | -0/+5 |
| |\ \ | | | | | | | resolve_redirects no longer throws an InvalidSchema exception when the scheme is uppercase | ||||
| | * | | resolve_redirects now checks for a scheme before converting the scheme to ↵ | Bob Carroll | 2013-05-26 | 1 | -2/+3 |
| | | | | | | | | | | | | | lowercase, added tests or the scheme casing | ||||
| | * | | resolve_redirects no longer throws an InvalidSchema exception when the ↵ | Bob Carroll | 2013-05-26 | 1 | -0/+4 |
| | |/ | | | | | | | scheme is uppercase | ||||
| * | | Merge pull request #1385 from ViktorHaag/master | Kenneth Reitz | 2013-06-08 | 2 | -5/+5 |
| |\ \ | | | | | | | Cope with mixed-case URL schemes (like 'HTTP') by lower-ifying 'url' string before calling startswith() on it | ||||
| | * | | added tests for mixed-case scheme URLs, changed adapters passing down URLs ↵ | Viktor Haag | 2013-05-24 | 1 | -3/+3 |
| | | | | | | | | | | | | | into urllib3 by lower-ifying them so that the underlying pool manager can effectively pool by scheme as dictionary key | ||||
| | * | | - fixed func call syntax on lower to lower() | Viktor Haag | 2013-05-24 | 2 | -2/+2 |
| | | | | | | | | | | | | | - added test cases for trying to test GETS on mixed-case schemas | ||||
| | * | | Lower-ify url before checking against prefix with startswith() | Viktor Haag | 2013-05-24 | 2 | -2/+2 |
| | | | | |||||
| * | | | Merge pull request #1381 from expandrive/master | Kenneth Reitz | 2013-06-08 | 1 | -2/+2 |
| |\ \ \ | | | | | | | | | Don't force chunked transfer on 0-length file-like object. | ||||
| | * | | | Only switch to chunked if we don't know the length of a file like object. ↵ | Jeff Mancuso | 2013-05-23 | 1 | -2/+2 |
| | |/ / | | | | | | | | | | This fixes the case of trying to upload a 0-length file - chunked upload was being forced. Services like S3 that disallow chunked upload will fail. | ||||
| * | | | Merge pull request #1408 from wasw100/master | Kenneth Reitz | 2013-06-08 | 1 | -5/+10 |
| |\ \ \ | | | | | | | | | cookies.morsel_to_cookie morsel['expires'] can't be strtime, and morsel['max-age'] convert to expires problem repair | ||||
