diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-10-26 19:16:46 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-10-26 19:16:46 (GMT) |
commit | efb57072feb9da7ff7870e36f0fc9272a103de80 (patch) | |
tree | bcd817f1cc9fae4bb307404d1a9eb4032934523b /Lib/functools.py | |
parent | acde6102c4ce5a331673ef3491babdf36dedfff7 (diff) | |
download | cpython-efb57072feb9da7ff7870e36f0fc9272a103de80.zip cpython-efb57072feb9da7ff7870e36f0fc9272a103de80.tar.gz cpython-efb57072feb9da7ff7870e36f0fc9272a103de80.tar.bz2 |
Typo fix
Diffstat (limited to 'Lib/functools.py')
-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 8783f08..1fafb01 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -25,7 +25,7 @@ def update_wrapper(wrapper, assigned is a tuple naming the attributes assigned directly from the wrapped function to the wrapper function (defaults to functools.WRAPPER_ASSIGNMENTS) - updated is a tuple naming the attributes off the wrapper that + updated is a tuple naming the attributes of the wrapper that are updated with the corresponding attribute from the wrapped function (defaults to functools.WRAPPER_UPDATES) """ |