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

Commit b2c89fa

Browse files
committed
Fox for old python PyMem_DEL, was PyMem_Del,
1 parent ed6cce4 commit b2c89fa

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
@@ -37,7 +37,7 @@
3737

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

4343
static PyObject *PGError;

0 commit comments

Comments
 (0)