From cb12317d218f0212615a1f60eb679c56de03c847 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Mon, 24 May 2021 11:15:24 +0200 Subject: Drop use of obsolete alias PyMem_Del --- psycopg/cursor_type.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'psycopg') diff --git a/psycopg/cursor_type.c b/psycopg/cursor_type.c index 199c8a3..7bf588f 100644 --- a/psycopg/cursor_type.c +++ b/psycopg/cursor_type.c @@ -1133,7 +1133,7 @@ exit: } } } - PyMem_Del(scpnames); + PyMem_Free(scpnames); Py_XDECREF(pname); Py_XDECREF(pnames); Py_XDECREF(operation); -- cgit v1.2.1