Skip to content

Commit 2f44a95

Browse files
committed
Rename '{kw,}args_obj' to '{kw,}args' in _interpretersmodule.c
1 parent 1d33fe0 commit 2f44a95

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

Modules/_interpretersmodule.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1276,8 +1276,8 @@ _interpreters_run_func_impl(PyObject *module, PyObject *id, PyObject *func,
12761276
_interpreters.call
12771277
id: object
12781278
callable: object
1279-
args as args_obj: object(subclass_of='&PyTuple_Type', c_default='NULL') = ()
1280-
kwargs as kwargs_obj: object(subclass_of='&PyDict_Type', c_default='NULL') = {}
1279+
args: object(subclass_of='&PyTuple_Type', c_default='NULL') = ()
1280+
kwargs: object(subclass_of='&PyDict_Type', c_default='NULL') = {}
12811281
*
12821282
preserve_exc: bool = False
12831283
restrict: bool = False
@@ -1289,9 +1289,9 @@ Pass the given args and kwargs, if possible.
12891289

12901290
static PyObject *
12911291
_interpreters_call_impl(PyObject *module, PyObject *id, PyObject *callable,
1292-
PyObject *args_obj, PyObject *kwargs_obj,
1293-
int preserve_exc, int restrict)
1294-
/*[clinic end generated code: output=d0de009172792592 input=b2b9f147c08b35fa]*/
1292+
PyObject *args, PyObject *kwargs, int preserve_exc,
1293+
int restrict)
1294+
/*[clinic end generated code: output=e04c697326e0f482 input=858caec5becc34ed]*/
12951295
{
12961296
PyThreadState *tstate = _PyThreadState_GET();
12971297
int reqready = 1;

Modules/clinic/_interpretersmodule.c.h

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)