[Zodb-checkins] CVS: Zope3/lib/python/Persistence - cPersistence.c:1.1.2.12
Jeremy Hylton
jeremy@zope.com
Wed, 6 Mar 2002 16:16:03 -0500
Update of /cvs-repository/Zope3/lib/python/Persistence
In directory cvs.zope.org:/tmp/cvs-serv13076
Modified Files:
Tag: Zope-3x-branch
cPersistence.c
Log Message:
Fix typo in assert. (Caught by Fred.)
=== Zope3/lib/python/Persistence/cPersistence.c 1.1.2.11 => 1.1.2.12 ===
goto err;
PyTuple_SET_ITEM(implements, 0, iface);
- assert(type->typ_dict != NULL);
+ assert(type->tp_dict != NULL);
r = PyDict_SetItemString(type->tp_dict, "__implements__", implements);
err:
Py_XDECREF(mod);