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 #include -# 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