This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ncoghlan
Recipients eric.araujo, hardkrash, ncoghlan, rhettinger
Date 2014-01-15.13:36:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389792967.5.0.655269341454.issue20009@psf.upfronthosting.co.za>
In-reply-to
Content
__wrapped__ is specifically for the case where the outer function is a relatively straightforward wrapper around the inner one (i.e. those cases where it would be appropriate to use functools.wraps or Graham Dumpleton's more sophisticated wrapt module).

More complex decorators and descriptors (like property) will define their own mechanism for accessing the internal details.
History
Date User Action Args
2014-01-15 13:36:07ncoghlansetrecipients: + ncoghlan, rhettinger, eric.araujo, hardkrash
2014-01-15 13:36:07ncoghlansetmessageid: <1389792967.5.0.655269341454.issue20009@psf.upfronthosting.co.za>
2014-01-15 13:36:07ncoghlanlinkissue20009 messages
2014-01-15 13:36:07ncoghlancreate