[Python-checkins] r84059 - python/branches/py3k/Lib/functools.py

raymond.hettinger python-checkins at python.org
Sun Aug 15 09:41:41 CEST 2010


Author: raymond.hettinger
Date: Sun Aug 15 09:41:40 2010
New Revision: 84059

Log:
Fix __all__.

Modified:
   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	Sun Aug 15 09:41:40 2010
@@ -9,7 +9,7 @@
 # See C source code for _functools credits/copyright
 
 __all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES',
-           'total_ordering', 'cmp_to_key', 'lfu_cache', 'lru_cache']
+           'total_ordering', 'cmp_to_key', 'lru_cache']
 
 from _functools import partial, reduce
 from collections import OrderedDict


More information about the Python-checkins mailing list