commit | 98b140c19620eae8e6e44d9edc7ab02aaeaa4031 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sun Jan 23 21:05:46 2011 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sun Jan 23 21:05:46 2011 +0000 |
tree | 2021953fb225ddeab59694816cf8ce7aee142cb1 | |
parent | e6d4c5bab8d18e32bba6482da1b603b35f2fe254 [diff] [blame] |
Add entry for reprlib.
diff --git a/Lib/reprlib.py b/Lib/reprlib.py index 7b5c436..9fee304 100644 --- a/Lib/reprlib.py +++ b/Lib/reprlib.py
@@ -30,6 +30,7 @@ wrapper.__module__ = getattr(user_function, '__module__') wrapper.__doc__ = getattr(user_function, '__doc__') wrapper.__name__ = getattr(user_function, '__name__') + wrapper.__name__ = getattr(user_function, '__annotations__', {}) return wrapper return decorating_function