Re: [Python-checkins] CVS: python/dist/src/Objects classobject.c,2.86,2.87 dictobject.c,2.52,2.53 funcobject.c,2.20,2.21 listobject.c,2.73,2.74 tupleobject.c,2.36,2.37
23 Jun
2000
23 Jun
'00
10:12 a.m.
On Fri, Jun 23, 2000 at 07:18:13AM -0700, Jeremy Hylton wrote:
Round 1 of Neil Schemenauer's GC patches:
Yay. :)
+ class_traverse(PyClassObject *o, visitproc visit, void *arg) + { ... + return 0; + }
+ instance_traverse(PyInstanceObject *o, visitproc visit, void *arg) + { ... + return 1; + }
Oops. I think "return 0" is the proper thing to do. There are a few other functions that return 1 as well. Neil
8953
Age (days ago)
8953
Last active (days ago)
0 comments
1 participants
participants (1)
-
Neil Schemenauer