summaryrefslogtreecommitdiff
path: root/requests/packages
Commit message (Collapse)AuthorAgeFilesLines
* new urllib3Kenneth Reitz2013-09-249-106/+851
|
* Update urllib3 to 14b8945ms4py2013-08-033-42/+143
|
* Update urllib3 to d89d508Gavrie Philipson2013-07-294-13/+22
|
* Update urllib3 to a43319fAudrius Butkevicius2013-07-184-19/+24
|
* Update urllib3 to cffbd6b317Cory Benfield2013-06-182-1/+38
|
* update urllib3 to 60ba176f5dThomas Weißschuh2013-06-087-6/+52
|
* Update urllib3 to 59de03e6163c6928dc01832ed6e48e9f6c34c795.Bryce Boe2013-04-278-19/+30
| | | | | | | This update includes two fixes: * https://github.com/shazow/urllib3/issues/149 * https://github.com/shazow/urllib3/issues/174
* Update urllib3 to 71f84f9.schlamar2013-04-102-27/+54
|
* update vendored urllib3Thomas Weißschuh2013-03-284-16/+248
|
* cp949prover for charadeKenneth Reitz2013-03-221-0/+44
|
* upgrade to charade v1.0.3Kenneth Reitz2013-03-2210-19/+68
|
* urllib3 updateKenneth Reitz2013-02-101-3/+13
| | | | #1053
* update urllib3 to current master with ssl bugfixesMantas Vidutis2013-01-224-26/+81
|
* remove chardetKenneth Reitz2012-12-1737-7238/+0
|
* new urllib3Kenneth Reitz2012-12-178-72/+190
|
* charade v1.0.1Kenneth Reitz2012-12-171-3/+4
|
* Removed testing artifactsPascal Hartig2012-12-141-0/+0
|
* update charadeKenneth Reitz2012-12-0237-4705/+4342
|
* chardet fixes!Kenneth Reitz2012-12-015-33/+29
|
* out with chardet, in with charadeKenneth Reitz2012-11-2964-3945/+11713
|
* fixes for python2Kenneth Reitz2012-11-273-12/+19
|
* fix chardet importKenneth Reitz2012-11-271-1/+0
|
* chardet2 is magicKenneth Reitz2012-11-2771-11342/+4154
|
* no more oauthKenneth Reitz2012-11-2712-2852/+0
|
* Revert "Fix SSL3 error on Ubuntu 12.04"Kenneth Reitz2012-09-241-11/+3
| | | | This reverts commit c19650b00f0c169cdf6372a093425830e11a8771.
* Use logger instead of direct logging call.ayanamist2012-08-271-5/+7
|
* Fix SSL3 error on Ubuntu 12.04Joseph McCullough2012-08-191-3/+11
|
* ordered dictKenneth Reitz2012-07-271-0/+260
|
* urllib update and junksKenneth Reitz2012-07-276-216/+316
|
* breaks under python 2.7, without the from __future__ import jorjun2012-07-181-0/+1
|
* oauthlibKenneth Reitz2012-06-2812-0/+2850
|
* chardet2Kenneth Reitz2012-06-2836-0/+7212
|
* embed chardetKenneth Reitz2012-06-2835-0/+7188
|
* update urllib3Kenneth Reitz2012-06-253-11/+44
|
* urllib3 updateKenneth Reitz2012-06-154-57/+45
| | | | fixes #664
* remove oreosKenneth Reitz2012-05-104-1199/+0
|
* new urllib3 versionKenneth Reitz2012-03-312-5/+6
| | | | #498
* urllib3 v1.3Kenneth Reitz2012-03-257-162/+190
|
* Fix issue #484Pinkerton2012-03-141-1/+1
|
* Merge pull request #450 from Lukasa/issue_440Kenneth Reitz2012-02-251-1/+1
|\ | | | | Issue #440: Accept '=' in cookie keys.
| * Accept '=' in cookie keys.Cory Benfield2012-02-211-1/+1
| |
* | urllib3 v1.2.2Kenneth Reitz2012-02-255-26/+69
|/
* Merge branch 'develop' of https://github.com/Lukasa/requests into developKenneth Reitz2012-02-151-1/+3
|\
| * Change the RFC we reference.Cory Benfield2012-02-141-3/+3
| |
| * Make clearer the source of forbidden charactersCory Benfield2012-02-141-1/+3
| |
| * Keep non RFC cookie key characters separate.Cory Benfield2012-02-141-1/+1
| | | | | | | | | | Moved the characters that we accept in keys but that the RFC forbids into a separate string to keep track of them.
* | Merge pull request #425 from Lukasa/developKenneth Reitz2012-02-131-1/+2
|\ \ | |/ | | Issue #335: Accept unusual keys in cookies.
| * Accept unusual keys in cookies.Cory Benfield2012-02-141-1/+2
| | | | | | | | | | | | | | The Oreos module throws CookieErrors when it catches keys that have characters that shouldn't be in them, like colons and braces. Other services are happy to send out such keys, however. This commit makes requests non-standards compliant, just like everyone else is.
* | Merge pull request #410 from eriolv/developKenneth Reitz2012-02-121-3/+3
|\ \ | |/ |/| Fix SyntaxError on Python3 because "except Error, e" is not supported anymore
| * Since requests 0.10.1 dropped Python5 support, to catch an exception andDaniele Tricoli2012-02-051-3/+3
| | | | | | | | | | store the exception object in a variable the "as" keyword can be used so Python3 will not raise a SyntaxError