Fox for old python PyMem_DEL, was PyMem_Del,

ecpg_big_bison
Bruce Momjian 24 years ago
parent ed6cce4c7b
commit b2c89fa7af
  1. 2
      src/interfaces/python/pgmodule.c

@ -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;

Loading…
Cancel
Save