[Zope-Checkins] CVS: ZODB3/Persistence - cPersistence.c:1.72.8.4
Jeremy Hylton
jeremy@zope.com
Tue, 1 Jul 2003 15:49:44 -0400
Update of /cvs-repository/ZODB3/Persistence
In directory cvs.zope.org:/tmp/cvs-serv31680
Modified Files:
Tag: zodb33-devel-branch
cPersistence.c
Log Message:
Don't DECREF ob_type.
subtype_dealloc() will handle this in the cases where it is necessary.
=== ZODB3/Persistence/cPersistence.c 1.72.8.3 => 1.72.8.4 ===
--- ZODB3/Persistence/cPersistence.c:1.72.8.3 Tue Jul 1 15:46:28 2003
+++ ZODB3/Persistence/cPersistence.c Tue Jul 1 15:49:44 2003
@@ -411,7 +411,6 @@
Per_dealloc(cPersistentObject *self)
{
deallocated(self);
- Py_DECREF(self->ob_type);
self->ob_type->tp_free(self);
}