diff options
Diffstat (limited to 'Objects/classobject.c')
-rw-r--r-- | Objects/classobject.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c index 6008999..268cf1a 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.c @@ -960,14 +960,6 @@ typeobject Instancetype = { instance_hash, /*tp_hash*/ }; -static object * -instance_convert(inst, methodname) - object *inst; - char *methodname; -{ - return generic_unary_op((instanceobject *)inst, methodname); -} - /* Instance method objects are used for two purposes: (a) as bound instance methods (returned by instancename.methodname) |