Fix '#' commant to be proper C comment.

This commit is contained in:
Bruce Momjian 2002-03-29 07:21:25 +00:00
parent 6852741c18
commit ed6cce4c7b

View 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