diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-01-17 01:35:17 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-01-17 01:35:17 +0100 |
commit | 7372e18fa83aa35766f8f6fdf3aed27fac2d52d2 (patch) | |
tree | c5eb7813326424e3a96d625dada3b1db96bce7b2 /Python/clinic/_warnings.c.h | |
parent | aeb36518375e829b3f84f58775c6991bf4f92514 (diff) | |
download | cpython-7372e18fa83aa35766f8f6fdf3aed27fac2d52d2.tar.gz |
Run Argument Clinic: METH_VARARGS=>METH_FASTCALL
Issue #29286. Run Argument Clinic to get the new faster METH_FASTCALL calling
convention for functions using only positional arguments.
Diffstat (limited to 'Python/clinic/_warnings.c.h')
-rw-r--r-- | Python/clinic/_warnings.c.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/clinic/_warnings.c.h b/Python/clinic/_warnings.c.h index c15c9bef23..550c73f952 100644 --- a/Python/clinic/_warnings.c.h +++ b/Python/clinic/_warnings.c.h @@ -35,4 +35,4 @@ warnings_warn(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwn exit: return return_value; } -/*[clinic end generated code: output=b3c5297c2c55778c input=a9049054013a1b77]*/ +/*[clinic end generated code: output=acadf1788059034c input=a9049054013a1b77]*/ |