bpo-33720: Refactor marshalling/unmarshalling floats. (GH-8071)

This commit is contained in:
Serhiy Storchaka 2018-07-24 10:55:47 +03:00 committed by GitHub
parent e22072fb11
commit c5734998d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 77 additions and 112 deletions

View file

@ -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;