[Zope-Checkins] CVS: Zope/lib/python/BTrees - BucketTemplate.c:1.45
Tim Peters
tim.one@comcast.net
Thu, 20 Jun 2002 11:03:28 -0400
Update of /cvs-repository/Zope/lib/python/BTrees
In directory cvs.zope.org:/tmp/cvs-serv792
Modified Files:
BucketTemplate.c
Log Message:
Bucket_nextBucket(): Removed, as it's no longer used.
=== Zope/lib/python/BTrees/BucketTemplate.c 1.44 => 1.45 ===
}
-static int
-Bucket_nextBucket(Bucket *self, Bucket **r)
-{
- PER_USE_OR_RETURN(self, -1);
- *r=self->next;
- Py_XINCREF(*r);
- PER_ALLOW_DEACTIVATION(self);
- PER_ACCESSED(self);
- return 0;
-}
-
/* Set self->next to self->next->next, i.e. unlink self's successor from
* the chain.
*