| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | come out and play!render | Kenneth Reitz | 2016-02-18 | 1 | -1/+1 |
| | | |||||
| * | pretty() | Kenneth Reitz | 2016-02-16 | 1 | -58/+27 |
| | | |||||
| * | cleanup | Kenneth Reitz | 2016-02-16 | 1 | -10/+1 |
| | | |||||
| * | Response.dump/dumps | Kenneth Reitz | 2016-02-16 | 1 | -0/+83 |
| | | |||||
| * | PreparedRequest: dump/dumps | Kenneth Reitz | 2016-02-16 | 1 | -5/+18 |
| | | |||||
| * | PreparedRequest.dump(auto_print=True) | Kenneth Reitz | 2016-02-16 | 1 | -2/+13 |
| | | |||||
| * | update PreparedResponse.dump | Kenneth Reitz | 2016-02-16 | 1 | -6/+29 |
| | | |||||
| * | use colors to warn on non sting-like content bodies | Kenneth Reitz | 2016-02-16 | 1 | -1/+13 |
| | | |||||
| * | revised syntax for dump() | Kenneth Reitz | 2016-02-16 | 1 | -9/+19 |
| | | |||||
| * | renamed PreparedRequest.render to dump | Kenneth Reitz | 2016-02-14 | 1 | -1/+1 |
| | | |||||
| * | Revert "Response.render()" | Kenneth Reitz | 2016-02-14 | 1 | -13/+0 |
| | | | | | This reverts commit 6cd586dc8ea19f01686d265d97b8bb308f5e0769. | ||||
| * | Response.render() | Kenneth Reitz | 2016-02-14 | 1 | -0/+13 |
| | | |||||
| * | PreparedRequest.render() | Kenneth Reitz | 2016-02-14 | 1 | -0/+15 |
| | | |||||
| * | Fix regression from #2844 regarding binary bodies. | Cory Benfield | 2015-12-16 | 1 | -1/+4 |
| | | |||||
| * | Merge pull request #2896 from BraulioVM/master | Ian Cordasco | 2015-12-02 | 1 | -1/+1 |
| |\ | | | | | [WIP] Set 'Transfer-Encoding: chunked' if data is a file with length 0 | ||||
| | * | Fix 'Transfer-Encoding: chunked' change | Braulio Valdivielso Martínez | 2015-11-24 | 1 | -3/+1 |
| | | | |||||
| | * | Set 'Transfer-Encoding: chunked' if data file length equals 0 | Braulio Valdivielso Martínez | 2015-11-23 | 1 | -0/+2 |
| | | | |||||
| * | | Fix typos | Jakub Wilk | 2015-12-01 | 1 | -2/+2 |
| |/ | |||||
| * | fix issue #2844 | Alex Khomchenko | 2015-10-23 | 1 | -1/+1 |
| | | |||||
| * | Move to_native_string for methods to prepare() | Cory Benfield | 2015-10-12 | 1 | -1/+1 |
| | | |||||
| * | Use general null check for JSON | Cory Benfield | 2015-10-08 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #2763 from ravipra/json_supersedes | Cory Benfield | 2015-10-05 | 1 | -2/+2 |
| |\ | | | | | Fixed issue #2756 | ||||
| | * | changed the null check for 'data' parameter to be more explicit. | Ravi Prakash Putchala | 2015-09-09 | 1 | -1/+1 |
| | | | | | | | | | removed the superfluous encode from the testcase. | ||||
| | * | Fixed issue #2756 | Ravi Prakash Putchala | 2015-09-08 | 1 | -2/+2 |
| | | | | | | | | | | | Now 'json' parameter will be used to prepare body only if the 'data' parameter is not present | ||||
| * | | Update models.py | sumitbinnani | 2015-10-02 | 1 | -1/+1 |
| |/ | | | | Updated Documentation: ```data``` as well as ```files``` supersedes json | ||||
| * | Display URL as part of HTTP error messages | Marc Abramowitz | 2015-06-22 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It seems convenient to include the URL in the error message in case you get an unexpected error. E.g.: In [1]: import requests In [2]: resp = requests.get('http://www.google.com/eofdfdfdfdfd') In [3]: resp Out[3]: <Response [404]> In [4]: resp.raise_for_status() --------------------------------------------------------------------------- HTTPError Traceback (most recent call last) <ipython-input-4-00e7077cfb5b> in <module>() ----> 1 resp.raise_for_status() /Users/marca/dev/git-repos/requests/requests/models.py in raise_for_status(self) 835 836 if http_error_msg: --> 837 raise HTTPError(http_error_msg, response=self) 838 839 def close(self): HTTPError: 404 Client Error: Not Found for url: http://www.google.com/eofdfdfdfdfd | ||||
| * | fix contextlib.closing bug for sessions where content is not consumed (issue ↵ | colin | 2015-05-24 | 1 | -0/+3 |
| | | | | | #2593) | ||||
| * | Merge pull request #2598 from Lukasa/not-poor | Ian Cordasco | 2015-05-14 | 1 | -4/+7 |
| |\ | | | | | Partially revert ab84f9be5740d4649d734e73b84f17f85e52ffc9 | ||||
| | * | Use complexjson everywhere | Cory Benfield | 2015-05-14 | 1 | -2/+4 |
| | | | |||||
| | * | Partially revert ab84f9be5740d4649d734e73b84f17f85e52ffc9 | Cory Benfield | 2015-05-14 | 1 | -2/+3 |
| | | | |||||
| * | | do not blindly catch all AttributeErrors | Thomas Weißschuh | 2015-05-12 | 1 | -3/+4 |
| |/ | | | | see shazow/urllib3#618 | ||||
| * | Merge remote-tracking branch 'origin/master' | Kenneth Reitz | 2015-05-06 | 1 | -0/+4 |
| |\ | |||||
| | * | Simplify PreparedRequest.prepare API | Ian Cordasco | 2015-04-20 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | Do not require that hooks be passed as an empty list to PreparedRequest.prepare. In the event hooks is None in prepare or prepare_hooks, use an empty list as a default. Related to #2552 | ||||
| * | | cleanup styles a bit | Kenneth Reitz | 2015-05-06 | 1 | -28/+11 |
| | | | |||||
| * | | removed poor code | Kenneth Reitz | 2015-05-06 | 1 | -3/+2 |
| |/ | |||||
| * | Minor formatting change | Ian Cordasco | 2015-04-10 | 1 | -2/+2 |
| | | |||||
| * | fix bug 2540 | sh1buy | 2015-04-11 | 1 | -1/+2 |
| | | |||||
| * | Fix bug 2540 | sh1buy | 2015-04-11 | 1 | -1/+1 |
| | | |||||
| * | fix bug 2540 | sh1buy | 2015-04-11 | 1 | -1/+1 |
| | | |||||
| * | #2532: Documented strange behaviour in "PreparedRequest.prepare_cookies", ↵ | Smiley Barry | 2015-04-06 | 1 | -1/+9 |
| | | | | | caused by cookielib. Also documented a workaround if absolutely necessary. | ||||
| * | Copy a PreparedRequest's CookieJar reliably | Ian Cordasco | 2015-04-05 | 1 | -2/+2 |
| | | | | | | | | | | | | | When a PreparedRequests's cookie jar is not a RequestsCookieJar instance, it will not have a "copy" method. By adding _copy_cookie_jar we can reliably copy cookie jars so that we have an actual copy instead of the same instance on different prepared requests. This also updates the RequestsCookieJar.update logic to create copies of cookies from the other jar. Closes #2527 | ||||
| * | Expand on what 'elapsed' means. | Cory Benfield | 2015-03-21 | 1 | -1/+5 |
| | | |||||
| * | Merge pull request #2472 from scholer/master | Ian Cordasco | 2015-03-14 | 1 | -5/+6 |
| |\ | | | | | Avoid data duplication when creating a Request with str/bytes/bytearray input | ||||
| | * | Avoid duplicating files data when creating a Request with ↵ | Rasmus Scholer (TimelineX) | 2015-03-04 | 1 | -5/+6 |
| | | | | | | | | | str/bytes/bytearray in the files argument. 30-40% performance improvement. | ||||
| * | | Document Response.iter_lines() reentrancy issues | Priit Laes | 2015-03-07 | 1 | -0/+2 |
| |/ | |||||
| * | models.RequestEncodingMixin._encode_files now takes bytearray as fp in ↵ | Rasmus Scholer (TimelineX) | 2015-03-03 | 1 | -1/+1 |
| | | | | | addition to the currently supported bytes and str input. | ||||
| * | Fix error handling on Python 3 | Ian Cordasco | 2014-12-16 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'master' of https://github.com/ContinuousFunction/requests into ↵ | Ian Cordasco | 2014-12-16 | 1 | -2/+5 |
| |\ | | | | | | | pr/2344 | ||||
| | * | Changed ConnectionError to InvalidURL | ContinuousFunction | 2014-11-17 | 1 | -1/+1 |
| | | | |||||
| | * | Partially addresses Issue #1572 | ContinuousFunction | 2014-11-15 | 1 | -2/+5 |
| | | | | | | | | | | | | | | | | | Addresses the LocationParseError but not the DecodeError from kennethreitz#1572. When running test_requests.py, I got an error in test_session_pickling which resulted in a TypeError. I'm not sure of the reason for the TypeError but I have commented out that test. | ||||
