diff options
author | Vytis Banaitis <vytis.banaitis@gmail.com> | 2017-01-20 23:04:05 +0200 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2017-01-26 08:19:27 -0500 |
commit | d1bab24e0144d14513a1411503c95ececb425188 (patch) | |
tree | 187452bf7b66a9600abc47570ccae22e6d539ede /django/http/request.py | |
parent | 888c1e9bfe49135d049cbdcbbb0f2e97a1a0a1f5 (diff) | |
download | django-d1bab24e0144d14513a1411503c95ececb425188.tar.gz |
Refs #23919, #27778 -- Removed obsolete mentions of unicode.
Diffstat (limited to 'django/http/request.py')
-rw-r--r-- | django/http/request.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/http/request.py b/django/http/request.py index c91a51b48d..797b0414b6 100644 --- a/django/http/request.py +++ b/django/http/request.py @@ -354,7 +354,7 @@ class QueryDict(MultiValueDict): will always return a mutable copy. Both keys and values set on this class are converted from the given encoding - (DEFAULT_CHARSET by default) to unicode. + (DEFAULT_CHARSET by default) to str. """ # These are both reset in __init__, but is specified here at the class |