瀏覽代碼

Fixed typo in docs/ref/request-response.txt.

Theodoros Ikonomou 10 年之前
父節點
當前提交
49d034fff2
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/ref/request-response.txt

+ 1 - 1
docs/ref/request-response.txt

@@ -367,7 +367,7 @@ a subclass of dictionary. Exceptions are outlined here:
     Instantiates a ``QueryDict`` object based on ``query_string``.
 
     >>> QueryDict('a=1&a=2&c=3')
-    <QueryDict: {u'a': [u'1', u'2'], u'b': [u'1']}>
+    <QueryDict: {'a': ['1', '2'], 'c': ['3']}>
 
     If ``query_string`` is not passed in, the resulting ``QueryDict`` will be
     empty (it will have no keys or values).