From 1feda14c8e14eb4d716d725a58add6dbbb04bd5f Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 3 Jul 2007 18:29:56 +0000 Subject: unicode: Made some documentation edits and inconsequential typo fixes throughout code git-svn-id: http://code.djangoproject.com/svn/django/branches/unicode@5597 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/http/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'django/http/__init__.py') diff --git a/django/http/__init__.py b/django/http/__init__.py index 76f9246ca6..14acd9afde 100644 --- a/django/http/__init__.py +++ b/django/http/__init__.py @@ -50,7 +50,7 @@ class HttpRequest(object): def _set_encoding(self, val): """ Sets the encoding used for GET/POST accesses. If the GET or POST - dictionary has already been created it is removed and recreated on the + dictionary has already been created, it is removed and recreated on the next access (so that it is decoded correctly). """ self._encoding = val @@ -101,7 +101,7 @@ class QueryDict(MultiValueDict): This is immutable unless you create a copy of it. Values retrieved from this class are converted from the default encoding to - unicode (this is done on retrieval, rather than input to avoid breaking + unicode (this is done on retrieval, rather than input, to avoid breaking references or mutating referenced objects). """ def __init__(self, query_string, mutable=False, encoding=None): -- cgit v1.3