1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Capitalized Unicode in docs, strings, and comments.

This commit is contained in:
Jon Dufresne
2020-04-18 07:46:05 -07:00
committed by Mariusz Felisiak
parent 3152146e3a
commit 505fec6bad
33 changed files with 41 additions and 41 deletions

View File

@@ -50,7 +50,7 @@ class HandlerTests(SimpleTestCase):
environ['QUERY_STRING'] = str(raw_query_string, 'iso-8859-1')
request = WSGIRequest(environ)
got.append(request.GET['want'])
# %E9 is converted to the unicode replacement character by parse_qsl
# %E9 is converted to the Unicode replacement character by parse_qsl
self.assertEqual(got, ['café', 'café', 'caf\ufffd', 'café'])
def test_non_ascii_cookie(self):