From c5734998d91e9953fd179ba6ed7015b6343e8191 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Tue, 24 Jul 2018 10:55:47 +0300 Subject: bpo-33720: Refactor marshalling/unmarshalling floats. (GH-8071) --- Objects/call.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Objects/call.c') diff --git a/Objects/call.c b/Objects/call.c index b53a98c76b..1937a8b227 100644 --- a/Objects/call.c +++ b/Objects/call.c @@ -1271,7 +1271,7 @@ PyObject_CallFunctionObjArgs(PyObject *callable, ...) /* Issue #29234: Inlining _PyStack_AsTuple() into callers increases their stack consumption, Disable inlining to optimize the stack consumption. */ -PyObject* _Py_NO_INLINE +_Py_NO_INLINE PyObject * _PyStack_AsTuple(PyObject *const *stack, Py_ssize_t nargs) { PyObject *args; -- cgit v1.2.1