Alex Gaynor
|
9a56b4b13e
|
Fixed #27863 -- Added support for the SameSite cookie flag.
Thanks Alex Gaynor for contributing to the patch.
|
2018-04-13 20:58:31 -04:00 |
Tim Graham
|
cfff2af02b
|
Fixed #27857 -- Dropped support for Python 3.4.
|
2017-09-25 17:11:03 -04:00 |
chillaranand
|
d6eaf7c018
|
Refs #23919 -- Replaced super(ClassName, self) with super().
|
2017-01-25 12:23:46 -05:00 |
Claude Paroz
|
042b7350a0
|
Refs #23919 -- Removed unneeded str() calls
|
2017-01-20 14:13:55 +01:00 |
Tim Graham
|
fedda6d9bd
|
Refs #23919 -- Removed Python 2 version check in django.http.cookie.
|
2017-01-19 20:06:03 -05:00 |
Claude Paroz
|
2b281cc35e
|
Refs #23919 -- Removed most of remaining six usage
Thanks Tim Graham for the review.
|
2017-01-18 21:33:28 +01:00 |
Claude Paroz
|
c716fe8782
|
Refs #23919 -- Removed six.PY2/PY3 usage
Thanks Tim Graham for the review.
|
2017-01-18 16:21:28 +01:00 |
Claude Paroz
|
d7b9aaa366
|
Refs #23919 -- Removed encoding preambles and future imports
|
2017-01-18 09:55:19 +01:00 |
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 |