Ticket #27592: 27592.diff

File 27592.diff, 976 bytes (added by Tim Graham, 7 years ago)
  • docs/ref/request-response.txt

    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:  
    490490    :meth:`QueryDict.items()` this uses the same last-value logic as
    491491    :meth:`QueryDict.__getitem__()`.
    492492
     493    Available only on Python 2.
     494
    493495.. method:: QueryDict.iterlists()
    494496
    495497    Like :meth:`QueryDict.iteritems()` except it includes all values, as a list,
    496498    for each member of the dictionary.
    497499
     500    Available only on Python 2.
     501
    498502.. method:: QueryDict.values()
    499503
    500504    Just like the standard dictionary ``values()`` method, except this uses the
    a subclass of dictionary. Exceptions are outlined here:  
    508512
    509513    Just like :meth:`QueryDict.values()`, except an iterator.
    510514
     515    Available only on Python 2.
     516
    511517In addition, ``QueryDict`` has the following methods:
    512518
    513519.. method:: QueryDict.copy()
Back to Top