diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-03-29 07:45:39 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-03-29 07:45:39 +0000 |
commit | b2c89fa7af5a4f792880f8a8f26adb9a3fdfbeae (patch) | |
tree | 4fe3cdee0f0053eff4291511e1f1feb5848ea6ac /src/interfaces/python/pgmodule.c | |
parent | ed6cce4c7b6024483d1de0d03cea4811cad9b291 (diff) | |
download | postgresql-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.c | 2 |
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; |