summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* v2.4.3v2.4.3Kenneth Reitz2014-10-061-2/+2
|
* v2.4.3Kenneth Reitz2014-10-061-1/+10
|
* Merge pull request #2268 from sigmavirus24/fix-paramsKenneth Reitz2014-10-062-4/+4
|\ | | | | Re-order params for backwards compat
| * Re-order params for backwards compatIan Cordasco2014-10-052-4/+4
| |
* | Merge pull request #2267 from minrk/unicode-url-py2Kenneth Reitz2014-10-062-2/+10
|\ \ | |/ |/| allow unicode URLs on Python 2
| * allow unicode URLs on Python 2MinRK2014-10-052-2/+10
|/ | | | | | on Python 2 u'é'.decode('utf8') fails with UnicodeEncodeError, but only AttributeError is caught. This only calls decode on known bytes objects.
* Merge pull request #2249 from t-8ch/fix_2247Kenneth Reitz2014-10-052-3/+18
|\ | | | | fix #2247
| * remove unused importThomas Weißschuh2014-09-261-1/+1
| |
| * fix #2247Thomas Weißschuh2014-09-252-2/+17
| | | | | | | | | | | | We have to pass urllib3 the url without the authentication information, else it will be parsed by httplib as a netloc and included in the request line and Host header
* | requests v2.4.2v2.4.2Kenneth Reitz2014-10-051-4/+4
| |
* | fix documentation for utils.get_unicode_from_response() :)Kenneth Reitz2014-10-051-4/+1
| |
* | v2.4.2 changelogKenneth Reitz2014-10-051-0/+22
| |
* | Merge pull request #2241 from tijko/masterKenneth Reitz2014-10-052-2/+8
|\ \ | | | | | | raise RuntimeError when a single streamed request calls *iter methods th...
| * | make StreamConsumedError doubly inheritTim Konick2014-09-221-1/+1
| | |
| * | using the `StreamConsumedError`Tim Konick2014-09-221-4/+4
| | |
| * | add-in StreamConsumedErrorTim Konick2014-09-221-0/+3
| | |
| * | rm `else` after `if` then `raise` blockTim Konick2014-09-221-3/+2
| | |
| * | raise RuntimeError when a single streamed request calls *iter methods than onceTim Konick2014-09-221-2/+6
| | |
* | | Merge pull request #2258 from willingc/add-jsonKenneth Reitz2014-10-054-10/+38
|\ \ \ | | | | | | | | Add json parameter
| * | | Fix a couple of issues I noticedIan Cordasco2014-09-302-10/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Don't _ prefix json in prepare_body - Don't initialize json to [] - Don't initialize json to {} - Reorder parameters to PreparedRequest.prepare - Remove extra parentheses - Update docstring
| * | | Fixes typo in testCarol Willing2014-08-281-1/+1
| | | |
| * | | Changes check on base and json. Fails on tests.Carol Willing2014-08-281-6/+5
| | | |
| * | | Adds review changesCarol Willing2014-08-282-3/+4
| | | |
| * | | Adds json parameter for POST requestsCarol Willing2014-08-284-10/+36
| | | |
* | | | Merge pull request #2265 from sigmavirus24/session-attrsCory Benfield2014-10-051-3/+4
|\ \ \ \ | | | | | | | | | | Remove timeout from __attrs__
| * | | | Remove timeout from __attrs__Ian Cordasco2014-10-041-3/+4
|/ / / / | | | | | | | | | | | | | | | | We do not allow the user to set the timeout value on the Session any longer so this is extraneous
* | | | Merge pull request #2238 from buttscicles/byte-urlsKenneth Reitz2014-10-023-6/+14
|\ \ \ \ | | | | | | | | | | Support bytestring URLs on Python 3.x
| * | | | Support bytestring URLs on Python 3.xJoe Alcorn2014-09-303-6/+14
|/ / / /
* | | | Merge pull request #2248 from jktjkt/docs-CAsCory Benfield2014-09-251-1/+1
|\ \ \ \ | |_|_|/ |/| | | docs: Clarify how to pass a custom set of CAs
| * | | docs: Clarify how to pass a custom set of CAsJan Kundrát2014-09-251-1/+1
|/ / / | | | | | | | | | | | | | | | This new wording makes it hopefully easier to find how to override the system-provided list of trusted CAs. I failed to find this through some googling and had to resort to asking on IRC previously.
* | | Merge pull request #2244 from sigmavirus24/bug/2231Kenneth Reitz2014-09-241-1/+6
|\ \ \ | | | | | | | | Avoid getting stuck in a loop
| * | | Avoid getting stuck in a loopIan Cordasco2014-09-221-1/+6
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This prevents a case where we make a request to URL A, which 301s to B which would then 301 back to A. Alternatively, for less simple schemes, this will also prevent us from getting stuck in a loop, e.g., it will prevent the following from causing an endless loop: A -> B -> C -> D -> E -> F -- ^ \ | / ---<------------<----------<-
* | | Merge pull request #2245 from sigmavirus24/doc-fixCory Benfield2014-09-231-2/+2
|\ \ \ | |/ / |/| | Correct redirection introduction
| * | Correct redirection introductionIan Cordasco2014-09-221-2/+2
| | | | | | | | | | | | | | | | | | The history attribute contains responses, not requests. Thanks to Yang Yang for reporting this to me via email
* | | Merge pull request #2237 from buttscicles/contributing-updateCory Benfield2014-09-202-3/+1
|\ \ \ | | | | | | | | Remove invoke from requirements.txt, docs
| * | | Remove invoke from requirements.txt, docsJoe Alcorn2014-09-202-3/+1
|/ / /
* | | Fixup the remaining references to timeline.json.Cory Benfield2014-09-201-3/+3
| | |
* | | Merge pull request #2227 from mjul/masterKenneth Reitz2014-09-183-0/+28
|\ \ \ | |/ / |/| | Added example of how to send multiple files in one request.
| * | Moved multiple files upload example to advanced section.Martin Jul2014-09-162-23/+26
| | |
| * | Added example of how to send multiple files in one request.Martin Jul2014-09-162-0/+25
|/ /
* | Merge pull request #2223 from blueyed/doc-followup-2222Ian Cordasco2014-09-122-2/+4
|\ \ | | | | | | Document skipping in PreparedRequest; followup to #2222
| * | Document skipping in PreparedRequest; followup to #2222Daniel Hahler2014-09-122-2/+4
|/ /
* | Merge pull request #2222 from blueyed/fix-MissingScheme-for-hostportCory Benfield2014-09-121-2/+9
|\ \ | | | | | | Add tests to test_invalid_url for `InvalidSchema`
| * | Add more tests to `test_invalid_url`Daniel Hahler2014-09-121-2/+9
|/ / | | | | | | | | | | This adds tests for the behavior introduced in b149be5d, where `PreparedRequest` was made to skip `parse_url` for e.g. `localhost:3128/`.
* | lawlKenneth Reitz2014-09-091-1/+1
| |
* | milsKenneth Reitz2014-09-091-1/+1
| |
* | requests v2.4.1v2.4.1Kenneth Reitz2014-09-092-2/+11
| |
* | Merge pull request #2210 from sigmavirus24/bug/2207Cory Benfield2014-09-091-2/+2
|\ \ | | | | | | Fix #2207
| * | Fix #2207Ian Cordasco2014-09-071-2/+2
| | | | | | | | | | | | @Lukasa wrote the fix in #2207
* | | Merge pull request #2213 from kennethreitz/req-rspCory Benfield2014-09-091-1/+1
|\ \ \ | |/ / |/| | Request->Response.