diff -r 1d72402c1c91 Lib/reprlib.py --- a/Lib/reprlib.py Tue Mar 15 13:33:28 2016 +1300 +++ b/Lib/reprlib.py Thu Mar 24 12:02:26 2016 +0800 @@ -30,6 +30,7 @@ wrapper.__module__ = getattr(user_function, '__module__') wrapper.__doc__ = getattr(user_function, '__doc__') wrapper.__name__ = getattr(user_function, '__name__') + wrapper.__qualname__ = getattr(user_function, '__qualname__') wrapper.__annotations__ = getattr(user_function, '__annotations__', {}) return wrapper