summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2018-09-12 19:06:42 (GMT)
committerGitHub <noreply@github.com>2018-09-12 19:06:42 (GMT)
commite5024517811ee990b770fca0ba7058742d00e032 (patch)
tree6da191463cc8ff17b6c4ec4e4479015e851d5244 /Objects/object.c
parent019f0a0cb85ebc234356415f3638b9bd77528e55 (diff)
downloadcpython-e5024517811ee990b770fca0ba7058742d00e032.zip
cpython-e5024517811ee990b770fca0ba7058742d00e032.tar.gz
cpython-e5024517811ee990b770fca0ba7058742d00e032.tar.bz2
closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)
Diffstat (limited to 'Objects/object.c')
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index 6498756..607f047 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -2180,7 +2180,7 @@ _PyTrash_thread_destroy_chain(void)
/* For Py_LIMITED_API, we need an out-of-line version of _Py_Dealloc.
Define this here, so we can undefine the macro. */
#undef _Py_Dealloc
-PyAPI_FUNC(void) _Py_Dealloc(PyObject *);
+void _Py_Dealloc(PyObject *);
void
_Py_Dealloc(PyObject *op)
{