]> granicus.if.org Git - postgresql/commitdiff
Fix '#' commant to be proper C comment.
authorBruce Momjian <bruce@momjian.us>
Fri, 29 Mar 2002 07:21:25 +0000 (07:21 +0000)
committerBruce Momjian <bruce@momjian.us>
Fri, 29 Mar 2002 07:21:25 +0000 (07:21 +0000)
src/interfaces/python/pgmodule.c

index 7adaa93bbea7248cd0c1d232decc0b9cdbd67c5b..3141a7ac1407ae63b7b7c5dd8d32f21f77c58d85 100644 (file)
@@ -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