Fox for old python PyMem_DEL, was PyMem_Del,

This commit is contained in:
Bruce Momjian 2002-03-29 07:45:39 +00:00
parent ed6cce4c7b
commit b2c89fa7af

View File

@ -37,7 +37,7 @@
/* PyObject_Del does not exist in older versions of Python. */
#if PY_VERSION_HEX < 0x01060000
#define PyObject_Del(op) PyMem_Del((op))
#define PyObject_Del(op) PyMem_DEL((op))
#endif
static PyObject *PGError;