[Python-checkins] r62477 - python/trunk/Modules/_bsddb.c
martin.v.loewis
python-checkins at python.org
Thu Apr 24 15:17:41 CEST 2008
Author: martin.v.loewis
Date: Thu Apr 24 15:17:24 2008
New Revision: 62477
Log:
Fix typo.
Modified:
python/trunk/Modules/_bsddb.c
Modified: python/trunk/Modules/_bsddb.c
==============================================================================
--- python/trunk/Modules/_bsddb.c (original)
+++ python/trunk/Modules/_bsddb.c Thu Apr 24 15:17:24 2008
@@ -203,7 +203,7 @@
staticforward PyTypeObject DB_Type, DBCursor_Type, DBEnv_Type, DBTxn_Type, DBLock_Type;
-#ifndef Py_Type
+#ifndef Py_TYPE
/* for compatibility with Python 2.5 and earlier */
#define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
#endif
More information about the Python-checkins
mailing list