On Tue, Sep 14, 2010 at 7:36 AM, raymond.hettinger <python-check...@python.org> wrote: > + # Can't use functools.wraps() here because of bootstrap issues > + wrapper.__module__ = getattr(user_function, '__module__') > + wrapper.__doc__ = getattr(user_function, '__doc__') > + wrapper.__name__ = getattr(user_function, '__name__') > + return wrapper
Perhaps add __wrapped__ as well? (I assume that, similar to _collections before it was made a builtin, the bootstrap issue is that _functools is an extension module rather than builtin, but reprlib is needed when building the extension modules?) Cheers, Nick. -- Nick Coghlan | ncogh...@gmail.com | Brisbane, Australia _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com