From b2c89fa7af5a4f792880f8a8f26adb9a3fdfbeae Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 29 Mar 2002 07:45:39 +0000 Subject: [PATCH] Fox for old python PyMem_DEL, was PyMem_Del, --- src/interfaces/python/pgmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/python/pgmodule.c b/src/interfaces/python/pgmodule.c index 3141a7ac14..df68590253 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; -- 2.40.0