[Python-checkins] r77084 - python/trunk/Doc/library/collections.rst

georg.brandl python-checkins at python.org
Mon Dec 28 09:01:59 CET 2009


Author: georg.brandl
Date: Mon Dec 28 09:01:59 2009
New Revision: 77084

Log:
#7586: fix typo.

Modified:
   python/trunk/Doc/library/collections.rst

Modified: python/trunk/Doc/library/collections.rst
==============================================================================
--- python/trunk/Doc/library/collections.rst	(original)
+++ python/trunk/Doc/library/collections.rst	Mon Dec 28 09:01:59 2009
@@ -818,7 +818,7 @@
     Point: x= 3.000  y= 4.000  hypot= 5.000
     Point: x=14.000  y= 0.714  hypot=14.018
 
-The subclass shown above sets ``__slots__`` to an empty tuple.  This keeps
+The subclass shown above sets ``__slots__`` to an empty tuple.  This helps
 keep memory requirements low by preventing the creation of instance dictionaries.
 
 Subclassing is not useful for adding new, stored fields.  Instead, simply


More information about the Python-checkins mailing list