aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/python/pgmodule.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-03-29 07:45:39 +0000
committerBruce Momjian <bruce@momjian.us>2002-03-29 07:45:39 +0000
commitb2c89fa7af5a4f792880f8a8f26adb9a3fdfbeae (patch)
tree4fe3cdee0f0053eff4291511e1f1feb5848ea6ac /src/interfaces/python/pgmodule.c
parented6cce4c7b6024483d1de0d03cea4811cad9b291 (diff)
downloadpostgresql-b2c89fa7af5a4f792880f8a8f26adb9a3fdfbeae.tar.gz
postgresql-b2c89fa7af5a4f792880f8a8f26adb9a3fdfbeae.zip
Fox for old python PyMem_DEL, was PyMem_Del,
Diffstat (limited to 'src/interfaces/python/pgmodule.c')
-rw-r--r--src/interfaces/python/pgmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/python/pgmodule.c b/src/interfaces/python/pgmodule.c
index 3141a7ac140..df685902531 100644
--- a/src/interfaces/python/pgmodule.c
+++ b/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;