| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 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 #1498 from Lukasa/incompleteread | Kenneth Reitz | 2013-07-31 | 1 | -4/+10 |
| |\ \ | | | | | | | Wrap IncompleteRead in ChunkedEncodingError. | ||||
| | * | | Wrap IncompleteRead in ChunkedEncodingError. | Cory Benfield | 2013-07-28 | 1 | -4/+10 |
| | |/ | |||||
| * | | 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 settings when creating PreparedRequest, don't copy Request. | Robert Estelle | 2013-07-31 | 1 | -32/+27 |
| | | | | |||||
| * | | | 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? | ||||
| * | | | Prepare requests with session settings separately from sending. | Robert Estelle | 2013-07-30 | 1 | -0/+13 |
| | |/ |/| | |||||
| * | | 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 |
| | | | |||||
| * | | Fix a few warnings flagged by PyDev | David Pursehouse | 2013-07-22 | 1 | -2/+1 |
| |/ | | | | | | - Unused import of urlparse - Unnecessary definition of variable - Incorrect indentation | ||||
| * | Remove urllib3-specific kwargs from general code | Cory Benfield | 2013-07-04 | 1 | -1/+1 |
| | | |||||
| * | Use the new urllib3 stream generator. | Cory Benfield | 2013-06-18 | 1 | -5/+12 |
| | | |||||
| * | 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. | ||||
| * | Fix typo, %t -> %r | papaeye | 2013-05-22 | 1 | -1/+1 |
| | | |||||
| * | Only pass unicode fieldnames to urllib3. | Ib Lundgren | 2013-05-21 | 1 | -1/+1 |
| | | |||||
| * | Fix for #1362. | Dave Shawley | 2013-05-16 | 1 | -7/+15 |
| | | | | | | | | | | | | | | `PreparedRequest.prepare_url` incorrectly applied IDNA encoding to the URLs entire `netloc`. It should only be encoding the hostname portion of the URL. IDNA encoding was limiting the user info, host, and port segments to be a maximum of 63 characters which causes problems for all by the most trivial user + password combinations. - Replaced usage of `urlparse` in `PreparedRequest.prepare_url` with `urllib3` equivalent. - Modified IDNA encoding section so that it only encodes the host portion of the URL. | ||||
| * | Prevent a KeyError when there's no link headers | Ian Cordasco | 2013-05-08 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #1279 from jemerick/unicode_multipart_post | Kenneth Reitz | 2013-04-16 | 1 | -5/+7 |
| |\ | | | | | Unicode strings in multipart post requests | ||||
| | * | model the encode_files data handling after encode_params | Jason Emerick | 2013-04-02 | 1 | -5/+7 |
| | | | |||||
| | * | use compat.str instead of compat.builtin_str | Jason Emerick | 2013-04-01 | 1 | -2/+2 |
| | | | |||||
| * | | Use streaming decompression feature of urllib3. | schlamar | 2013-04-10 | 1 | -3/+3 |
| | | | |||||
| * | | Fix #1293 | Ian Cordasco | 2013-04-06 | 1 | -1/+4 |
| | | | |||||
| * | | Merge pull request #1277 from pborreli/typos | Kenneth Reitz | 2013-04-01 | 1 | -1/+1 |
| |\ \ | | | | | | | Fixed typos | ||||
| | * | | Fixed typos | Pascal Borreli | 2013-04-01 | 1 | -1/+1 |
| | |/ | |||||
| * | | is should not be used for comparing numbers | Alex Gaynor | 2013-03-31 | 1 | -1/+1 |
| |/ | |||||
| * | Fix the tests and unseparate comments from code | Ian Cordasco | 2013-03-28 | 1 | -1/+1 |
| | | | | | See the comments on the previous few commits on GitHub. | ||||
| * | This should take care of #1266 | Ian Cordasco | 2013-03-27 | 1 | -3/+5 |
| | | | | | | We were sending 'None' as the Content-Length on requests where the body was a generator. This commit should prevent that entirely. | ||||
| * | Clarify streaming behavior in iter_lines doc | Justin Fenn | 2013-03-25 | 1 | -7/+8 |
| | | |||||
| * | first | Kenneth Reitz | 2013-03-22 | 1 | -1/+1 |
| | | |||||
| * | actually cleanup url authentication | Kenneth Reitz | 2013-03-22 | 1 | -4/+8 |
| | | |||||
| * | simplify get_auth_from_url call | Kenneth Reitz | 2013-03-22 | 1 | -5/+4 |
| | | |||||
| * | - Pull credentials out of the URL when possible. | Jamu Kakar | 2013-03-21 | 1 | -1/+5 |
| | | |||||
| * | Add ability to pass `response` to `HTTPError()` | Dmitry Medvinsky | 2013-03-03 | 1 | -3/+1 |
| | | | | | | | Just a little refactoring, but it seems nicer to me to be able to pass the response when constructing the `HTTPError` instance instead of constructing it and then changing the member variable. | ||||
| * | URLError doesn't exist anymore | sprt | 2013-03-01 | 1 | -1/+1 |
| | | |||||
| * | Revert "If Content-Length is already set.."[1] | Ian Cordasco | 2013-02-25 | 1 | -2/+0 |
| | | | | | | | This reverts commit 544d08d0f61c35358cf13b4a6b677e4e51dbbe7e. [1]"If Content-Length is already set, don't over ride it" | ||||
| * | Merge pull request #1181 from denis-ryzhkov/master | Kenneth Reitz | 2013-02-12 | 1 | -0/+1 |
| |\ | | | | | Fix of UnicodeDecodeError on unicode header name that can be converted to ascii. | ||||
| | * | Deleted is_py2 check from unicode_header_name fix thanks to Lukasa. | Denis Ryzhkov | 2013-02-12 | 1 | -2/+1 |
| | | | |||||
| | * | Fix of UnicodeDecodeError on unicode header name that can be converted to ascii. | Denis Ryzhkov | 2013-02-11 | 1 | -0/+2 |
| | | | |||||
| * | | removed no longer used redirect codes from models | Piotr Dobrogost | 2013-02-11 | 1 | -2/+0 |
| |/ | | | | added numeric values of redirect codes in comments | ||||
| * | If Content-Length is already set, don't override | Ian Cordasco | 2013-02-01 | 1 | -0/+2 |
| | | | | | Re: #1159 | ||||
| * | More useful docstring. | Cory Benfield | 2013-01-28 | 1 | -1/+1 |
| | | |||||
| * | Make Response objects iterable. | Cory Benfield | 2013-01-28 | 1 | -0/+4 |
| | | |||||
| * | Merge pull request #1146 from oczkers/master | Kenneth Reitz | 2013-01-27 | 1 | -4/+2 |
| |\ | | | | | It`s more pep8 now | ||||
| | * | it`s more pep8 now | oczkers | 2013-01-27 | 1 | -4/+2 |
| | | | |||||
| * | | Use timedelta and change attribute name back to elapsed | Chris Lee | 2013-01-27 | 1 | -2/+4 |
| | | | |||||
| * | | Time how long each request takes | Chris Lee | 2013-01-27 | 1 | -0/+3 |
| |/ | | | | Stored as attribute Response.time_taken | ||||
