Commit ed6cce4c authored by Bruce Momjian's avatar Bruce Momjian

Fix '#' commant to be proper C comment.

parent 6852741c
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.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 #if PY_VERSION_HEX < 0x01060000
#define PyObject_Del(op) PyMem_Del((op)) #define PyObject_Del(op) PyMem_Del((op))
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment