[issue3471] PyObject_GetAttr() to get special methods

2009-11-28 Thread Benjamin Peterson
Benjamin Peterson added the comment: I'm closing this now. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue3471] PyObject_GetAttr() to get special methods

2009-05-16 Thread Benjamin Peterson
Benjamin Peterson added the comment: I fixed the PyObject_GetAttr issue in r72690. I've also been working on fixing the lookup of other special methods. Armin, do you have a list of methods we should check? -- assignee: -> benjamin.peterson ___ Pyth

[issue3471] PyObject_GetAttr() to get special methods

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: This snippet is fixed (returns False), see issue 2325: import abc isinstance(5, abc.ABCMeta) The general PyObject_GetAttr issue should be reviewed. -- components: +Interpreter Core nosy: +ajaksu2, benjamin.peterson priority: -> normal stage: -> test n

[issue3471] PyObject_GetAttr() to get special methods

2008-07-30 Thread Armin Rigo
New submission from Armin Rigo <[EMAIL PROTECTED]>: There is a bunch of obscure behavior caused by the use of PyObject_GetAttr() to get special method from objects. This is wrong because special methods should only be looked up in object types, not on the objects themselves (i.e. with PyType_Loo