Victor Stinner 7bfb42d5b7 Issue #28858: Remove _PyObject_CallArg1() macro
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.
2016-12-05 17:04:32 +01:00
..
2016-09-07 09:26:18 -07:00
2016-12-05 16:59:22 +10:00
2016-12-04 22:59:09 +01:00
2016-12-05 16:59:22 +10:00
2016-09-13 22:46:15 -07:00
2016-12-04 22:59:09 +01:00
2016-09-09 14:57:58 -07:00
2016-11-12 16:38:03 -05:00

Miscellaneous source files for the main Python shared library