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

raymond.hettinger python-checkins at python.org
Fri Jun 27 23:34:25 CEST 2008


Author: raymond.hettinger
Date: Fri Jun 27 23:34:24 2008
New Revision: 64565

Log:
Fix whitespace in example code.

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	Fri Jun 27 23:34:24 2008
@@ -540,8 +540,8 @@
                    raise ValueError('Got unexpected field names: %r' % kwds.keys())
                return result
    <BLANKLINE>            
-        def __getnewargs__(self): 
-            return tuple(self)
+           def __getnewargs__(self): 
+               return tuple(self)
    <BLANKLINE>
            x = property(itemgetter(0))
            y = property(itemgetter(1))


More information about the Python-checkins mailing list