From 98b140c19620eae8e6e44d9edc7ab02aaeaa4031 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sun, 23 Jan 2011 21:05:46 +0000 Subject: Add entry for reprlib. --- Lib/reprlib.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/reprlib.py') diff --git a/Lib/reprlib.py b/Lib/reprlib.py index 7b5c436c39..9fee3046c6 100644 --- a/Lib/reprlib.py +++ b/Lib/reprlib.py @@ -30,6 +30,7 @@ def recursive_repr(fillvalue='...'): 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 -- cgit v1.2.1