diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-07-24 07:55:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-24 07:55:47 (GMT) |
commit | c5734998d91e9953fd179ba6ed7015b6343e8191 (patch) | |
tree | bec1c297d0facde44b327c079bf4ae9d0f19deac /Objects | |
parent | e22072fb11246f125aa9ff7629c832b9e2407ef0 (diff) | |
download | cpython-c5734998d91e9953fd179ba6ed7015b6343e8191.zip cpython-c5734998d91e9953fd179ba6ed7015b6343e8191.tar.gz cpython-c5734998d91e9953fd179ba6ed7015b6343e8191.tar.bz2 |
bpo-33720: Refactor marshalling/unmarshalling floats. (GH-8071)
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/call.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/call.c b/Objects/call.c index b53a98c..1937a8b 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; |