[Python-Dev] Calling base class methods from C (original) (raw)
"Martin v. Löwis" martin at v.loewis.de
Thu Mar 22 08:07:25 CET 2007
- Previous message: [Python-Dev] Calling base class methods from C
- Next message: [Python-Dev] Breaking calls to object.__init__/__new__
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
class List(list): def append(self, x): print x List.append(self, x) # What is the C equivalent of this call?
Always literally what you write in Python (assuming you meant list.append):
PyObject_CallMethod(PyList_Type, "append", "OO", self, x);
HTH, Martin
- Previous message: [Python-Dev] Calling base class methods from C
- Next message: [Python-Dev] Breaking calls to object.__init__/__new__
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]