From 7c35eee103df3b6f971ef77aa8394c898bf77687 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Thu, 5 Jul 2007 01:25:05 +0000 Subject: [PATCH] Form encoding should be changed only via HttpRequest, not on GET and POST directly. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5614 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/unicode.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/unicode.txt b/docs/unicode.txt index e0d7ab94e1..1ab255970c 100644 --- a/docs/unicode.txt +++ b/docs/unicode.txt @@ -345,9 +345,7 @@ client. By default, the ``DEFAULT_CHARSET`` setting is used as the assumed encoding for form data. If you need to change this for a particular form, you can set -the ``encoding`` attribute on the ``GET`` and ``POST`` data structures. For -convenience, changing the ``encoding`` property on an ``HttpRequest`` instance -does this for you. For example:: +the ``encoding`` attribute on an ``HttpRequest`` instance. For example:: def some_view(request): # We know that the data must be encoded as KOI8-R (for some reason).