diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-03-29 07:21:25 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-03-29 07:21:25 +0000 |
commit | ed6cce4c7b6024483d1de0d03cea4811cad9b291 (patch) | |
tree | b46a0fd9c25c9a6ca66b8012ce44ef829d01f19f /src/interfaces/python/pgmodule.c | |
parent | 6852741c1879fd2bd5ab5b367c7fc5a130dfd4da (diff) | |
download | postgresql-ed6cce4c7b6024483d1de0d03cea4811cad9b291.tar.gz postgresql-ed6cce4c7b6024483d1de0d03cea4811cad9b291.zip |
Fix '#' commant to be proper C comment.
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 7adaa93bbea..3141a7ac140 100644 --- a/src/interfaces/python/pgmodule.c +++ b/src/interfaces/python/pgmodule.c @@ -35,7 +35,7 @@ #include <stdlib.h> #include <string.h> -# PyObject_Del does not exist in older versions of Python. +/* PyObject_Del does not exist in older versions of Python. */ #if PY_VERSION_HEX < 0x01060000 #define PyObject_Del(op) PyMem_Del((op)) #endif |