Collin Anderson
|
93a135d111
|
Fixed #26158 -- Rewrote http.parse_cookie() to better match browsers.
|
2016-03-15 12:24:06 -04:00 |
Tim Graham
|
59df07738c
|
Simplified _cookie_allows_colon_in_names condition.
|
2016-03-14 18:58:49 -04:00 |
Tim Graham
|
2f81f466a8
|
Removed a workaround for a cookie encoding bug [1] in Python < 2.7.2.
[1] http://bugs.python.org/issue9824
|
2016-03-14 18:58:49 -04:00 |
Tim Graham
|
0ed7d15563
|
Sorted imports with isort; refs #23860.
|
2015-02-06 08:16:28 -05:00 |
Tim Graham
|
42b5e4feea
|
Fixed #23730 -- Moved support for SimpleCookie HIGHEST_PROTOCOL pickling to http.cookie.
This fix is necessary for Python 3.5 compatibility (refs #23763).
Thanks Berker Peksag for review.
|
2014-11-12 19:04:45 +01:00 |
Alex Gaynor
|
f2d8027c9a
|
Fixed up some more flake8 violations (this particular violation still has many occurrences in the tests/ dir so it can't be removed from setup.cfg yet)
|
2013-10-26 10:50:40 -07:00 |
e0ne
|
f2a4452882
|
Fixed #18403 -- Initialized bad_cookies in SimpleCookie
Thanks Stefano Crosta for the report.
|
2013-09-10 08:26:54 -04:00 |
Aymeric Augustin
|
365c3e8b73
|
Replaced "not PY3" by "PY2", new in six 1.4.0.
|
2013-09-02 12:11:02 +02:00 |
Claude Paroz
|
5c1143910e
|
Removed most of absolute_import imports
Should be unneeded with Python 2.7 and up.
Added some unicode_literals along the way.
|
2013-07-29 20:28:13 +02:00 |
Claude Paroz
|
f08e739bc2
|
Fixed #19585 -- Fixed loading cookie value as a dict
This regression was introduced by the 'unicode_literals' patch.
|
2013-01-11 21:09:33 +01:00 |
Alex Gaynor
|
b4066d7d21
|
Cleaned up the the http module. Moved all of the code from __init__.py to request.py, response.py and utils.py
|
2012-10-21 11:12:59 -07:00 |