[Zodb-checkins] CVS: StandaloneZODB/BTrees - BTreeTemplate.c:1.24
Jeremy Hylton
jeremy@zope.com
Thu, 28 Feb 2002 15:12:00 -0500
Update of /cvs-repository/StandaloneZODB/BTrees
In directory cvs.zope.org:/tmp/cvs-serv8554
Modified Files:
BTreeTemplate.c
Log Message:
Replace nonsense UNLESS(&copied) with UNLESS(copied).
=== StandaloneZODB/BTrees/BTreeTemplate.c 1.23 => 1.24 ===
COPY_KEY_FROM_ARG(d->key, PyTuple_GET_ITEM(items,l), copied);
l++;
- UNLESS (&copied) return -1;
+ UNLESS (copied) return -1;
INCREF_KEY(d->key);
}
d->value=PyTuple_GET_ITEM(items,l);