mirror of
https://github.com/python/cpython.git
synced 2026-05-08 13:40:46 -04:00
7bfb42d5b7
Replace _PyObject_CallArg1(func, arg) with PyObject_CallFunctionObjArgs(func, arg, NULL) Using the _PyObject_CallArg1() macro increases the usage of the C stack, which was unexpected and unwanted. PyObject_CallFunctionObjArgs() doesn't have this issue.
Miscellaneous source files for the main Python shared library