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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, vizcayno
Date 2008-07-02.20:43:49
SpamBayes Score 0.004332213
Marked as misclassified No
Message-id <1215031431.35.0.407724613231.issue3247@psf.upfronthosting.co.za>
In-reply-to
Content
The cause is that this object use a custom tp_getattr slot, and use
Py_FindMethod from there. and py3k removed the special "__methods__"
lookup that allowed to lists these items.

Of course, nowadays the way to add methods is not to put them in
tp_getattr, but in a tp_methods slot.
History
Date User Action Args
2008-07-02 20:43:51amaury.forgeotdarcsetspambayes_score: 0.00433221 -> 0.004332213
recipients: + amaury.forgeotdarc, vizcayno
2008-07-02 20:43:51amaury.forgeotdarcsetspambayes_score: 0.00433221 -> 0.00433221
messageid: <1215031431.35.0.407724613231.issue3247@psf.upfronthosting.co.za>
2008-07-02 20:43:50amaury.forgeotdarclinkissue3247 messages
2008-07-02 20:43:49amaury.forgeotdarccreate