projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed6cce4
)
Fox for old python PyMem_DEL, was PyMem_Del,
author
Bruce Momjian
<bruce@momjian.us>
Fri, 29 Mar 2002 07:45:39 +0000
(07:45 +0000)
committer
Bruce Momjian
<bruce@momjian.us>
Fri, 29 Mar 2002 07:45:39 +0000
(07:45 +0000)
src/interfaces/python/pgmodule.c
patch
|
blob
|
blame
|
history
diff --git
a/src/interfaces/python/pgmodule.c
b/src/interfaces/python/pgmodule.c
index 3141a7ac1407ae63b7b7c5dd8d32f21f77c58d85..df685902531bd0ff5366e9b049209858c2daaff3 100644
(file)
--- 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_D
el
((op))
+#define PyObject_Del(op) PyMem_D
EL
((op))
#endif
static PyObject *PGError;