[Python-3000-checkins] r58069 - python/branches/py3k/Doc/library/wsgiref.rst python/branches/py3k/Doc/library/xml.sax.reader.rst

collin.winter python-3000-checkins at python.org
Mon Sep 10 02:03:42 CEST 2007


Author: collin.winter
Date: Mon Sep 10 02:03:41 2007
New Revision: 58069

Modified:
   python/branches/py3k/Doc/library/wsgiref.rst
   python/branches/py3k/Doc/library/xml.sax.reader.rst
Log:
Remove two lingering references to now-gone has_key() methods from the library docs.

Modified: python/branches/py3k/Doc/library/wsgiref.rst
==============================================================================
--- python/branches/py3k/Doc/library/wsgiref.rst	(original)
+++ python/branches/py3k/Doc/library/wsgiref.rst	Mon Sep 10 02:03:41 2007
@@ -156,7 +156,7 @@
 
    :class:`Headers` objects support typical mapping operations including
    :meth:`__getitem__`, :meth:`get`, :meth:`__setitem__`, :meth:`setdefault`,
-   :meth:`__delitem__`, :meth:`__contains__` and :meth:`has_key`.  For each of
+   :meth:`__delitem__` and :meth:`__contains__`.  For each of
    these methods, the key is the header name (treated case-insensitively), and the
    value is the first value associated with that header name.  Setting a header
    deletes any existing values for that header, then adds a new value at the end of

Modified: python/branches/py3k/Doc/library/xml.sax.reader.rst
==============================================================================
--- python/branches/py3k/Doc/library/xml.sax.reader.rst	(original)
+++ python/branches/py3k/Doc/library/xml.sax.reader.rst	Mon Sep 10 02:03:41 2007
@@ -324,8 +324,9 @@
 ---------------------------------
 
 :class:`Attributes` objects implement a portion of the mapping protocol,
-including the methods :meth:`copy`, :meth:`get`, :meth:`has_key`, :meth:`items`,
-:meth:`keys`, and :meth:`values`.  The following methods are also provided:
+including the methods :meth:`copy`, :meth:`get`, :meth:`__contains__`,
+:meth:`items`, :meth:`keys`, and :meth:`values`.  The following methods
+are also provided:
 
 
 .. method:: Attributes.getLength()


More information about the Python-3000-checkins mailing list