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 benjamin.peterson
Recipients Stuart, benjamin.peterson
Date 2013-01-21.19:06:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1358795178.02.0.604444879356.issue17008@psf.upfronthosting.co.za>
In-reply-to
Content
If you want to emulate classmethod, calling __get__() on the function is the wrong thing to do. f.__get__(None, X) -> f You need to create a bound yourself instead.
History
Date User Action Args
2013-01-21 19:06:18benjamin.petersonsetrecipients: + benjamin.peterson, Stuart
2013-01-21 19:06:18benjamin.petersonsetmessageid: <1358795178.02.0.604444879356.issue17008@psf.upfronthosting.co.za>
2013-01-21 19:06:17benjamin.petersonlinkissue17008 messages
2013-01-21 19:06:17benjamin.petersoncreate