[Python-checkins] cpython (merge default -> default): Merge heads

terry.reedy python-checkins at python.org
Sat Mar 9 08:26:52 CET 2013


http://hg.python.org/cpython/rev/a4de286f9f4b
changeset:   82564:a4de286f9f4b
parent:      82563:ca56baa46d35
parent:      82561:02ffc9f94aab
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Sat Mar 09 02:22:03 2013 -0500
summary:
  Merge heads

files:
  Lib/functools.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/functools.py b/Lib/functools.py
--- a/Lib/functools.py
+++ b/Lib/functools.py
@@ -266,7 +266,7 @@
         elif maxsize is None:
 
             def wrapper(*args, **kwds):
-                # simple caching without ordering or size limit
+                # Simple caching without ordering or size limit
                 nonlocal hits, misses
                 key = make_key(args, kwds, typed)
                 result = cache_get(key, sentinel)
@@ -281,7 +281,7 @@
         else:
 
             def wrapper(*args, **kwds):
-                # size limited caching that tracks accesses by recency
+                # Size limited caching that tracks accesses by recency
                 nonlocal root, hits, misses, full
                 key = make_key(args, kwds, typed)
                 with lock:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list