[Python-checkins] r81368 - in python/branches/py3k: Lib/functools.py

georg.brandl python-checkins at python.org
Wed May 19 23:06:36 CEST 2010


Author: georg.brandl
Date: Wed May 19 23:06:36 2010
New Revision: 81368

Log:
Merged revisions 80068 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80068 | georg.brandl | 2010-04-14 10:56:01 +0200 (Mi, 14 Apr 2010) | 1 line
  
  #5341: fix typo and adapt docstring syntax.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/functools.py

Modified: python/branches/py3k/Lib/functools.py
==============================================================================
--- python/branches/py3k/Lib/functools.py	(original)
+++ python/branches/py3k/Lib/functools.py	Wed May 19 23:06:36 2010
@@ -51,7 +51,7 @@
                    assigned=assigned, updated=updated)
 
 def total_ordering(cls):
-    'Class decorator that fills-in missing ordering methods'
+    """Class decorator that fills in missing ordering methods"""
     convert = {
         '__lt__': [('__gt__', lambda self, other: other < self),
                    ('__le__', lambda self, other: not other < self),
@@ -78,7 +78,7 @@
     return cls
 
 def cmp_to_key(mycmp):
-    'Convert a cmp= function into a key= function'
+    """Convert a cmp= function into a key= function"""
     class K(object):
         def __init__(self, obj, *args):
             self.obj = obj


More information about the Python-checkins mailing list