diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2013-11-04 13:32:16 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2013-11-04 13:32:16 (GMT) |
commit | 3daaf5f89d7aab420146f74d26ada63afcabd992 (patch) | |
tree | 7dfc03983cbc66a0021b699bfec33304fbee027d /Lib | |
parent | 21ea21ef6db731a8cac14fcd0c1a12c5c44496f4 (diff) | |
download | cpython-3daaf5f89d7aab420146f74d26ada63afcabd992.zip cpython-3daaf5f89d7aab420146f74d26ada63afcabd992.tar.gz cpython-3daaf5f89d7aab420146f74d26ada63afcabd992.tar.bz2 |
Fix functools.partialmethod docs and __all__
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/functools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/functools.py b/Lib/functools.py index 8989361..1e79b31 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -11,7 +11,7 @@ __all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES', 'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce', 'partial', - 'singledispatch'] + 'partialmethod', 'singledispatch'] try: from _functools import reduce |