diff options
author | Georg Brandl <georg@python.org> | 2010-08-02 20:30:57 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-08-02 20:30:57 (GMT) |
commit | a1631b337ab6d3c3d65f8834725a22e7781fa211 (patch) | |
tree | dca872476a0f96c62254af7066ae09310974c139 /Doc/library/wsgiref.rst | |
parent | b2566cfbf9a7d86ea9397ed542819ded4f1e72b3 (diff) | |
download | cpython-a1631b337ab6d3c3d65f8834725a22e7781fa211.zip cpython-a1631b337ab6d3c3d65f8834725a22e7781fa211.tar.gz cpython-a1631b337ab6d3c3d65f8834725a22e7781fa211.tar.bz2 |
#9019: remove false (in 3k) claim about Headers updates.
Diffstat (limited to 'Doc/library/wsgiref.rst')
-rw-r--r-- | Doc/library/wsgiref.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/library/wsgiref.rst b/Doc/library/wsgiref.rst index 06672ae..6420162 100644 --- a/Doc/library/wsgiref.rst +++ b/Doc/library/wsgiref.rst @@ -187,9 +187,7 @@ manipulation of WSGI response headers using a mapping-like interface. .. class:: Headers(headers) Create a mapping-like object wrapping *headers*, which must be a list of header - name/value tuples as described in :pep:`333`. Any changes made to the new - :class:`Headers` object will directly update the *headers* list it was created - with. + name/value tuples as described in :pep:`333`. :class:`Headers` objects support typical mapping operations including :meth:`__getitem__`, :meth:`get`, :meth:`__setitem__`, :meth:`setdefault`, |