Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ed6cce4

Browse files
committed
Fix '#' commant to be proper C comment.
1 parent 6852741 commit ed6cce4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interfaces/python/pgmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#include <stdlib.h>
3636
#include <string.h>
3737

38-
# PyObject_Del does not exist in older versions of Python.
38+
/* PyObject_Del does not exist in older versions of Python. */
3939
#if PY_VERSION_HEX < 0x01060000
4040
#define PyObject_Del(op) PyMem_Del((op))
4141
#endif

0 commit comments

Comments
 (0)