diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt
index b344158..61ed312 100644
a
|
b
|
a subclass of dictionary. Exceptions are outlined here:
|
490 | 490 | :meth:`QueryDict.items()` this uses the same last-value logic as |
491 | 491 | :meth:`QueryDict.__getitem__()`. |
492 | 492 | |
| 493 | Available only on Python 2. |
| 494 | |
493 | 495 | .. method:: QueryDict.iterlists() |
494 | 496 | |
495 | 497 | Like :meth:`QueryDict.iteritems()` except it includes all values, as a list, |
496 | 498 | for each member of the dictionary. |
497 | 499 | |
| 500 | Available only on Python 2. |
| 501 | |
498 | 502 | .. method:: QueryDict.values() |
499 | 503 | |
500 | 504 | Just like the standard dictionary ``values()`` method, except this uses the |
… |
… |
a subclass of dictionary. Exceptions are outlined here:
|
508 | 512 | |
509 | 513 | Just like :meth:`QueryDict.values()`, except an iterator. |
510 | 514 | |
| 515 | Available only on Python 2. |
| 516 | |
511 | 517 | In addition, ``QueryDict`` has the following methods: |
512 | 518 | |
513 | 519 | .. method:: QueryDict.copy() |