Skip to content

Commit

Permalink
pythongh-101656: Fix "conversion from Py_ssize_t to int" warning in `…
Browse files Browse the repository at this point in the history
…_testcapimodule` (python#101657)
  • Loading branch information
sobolevn committed Feb 7, 2023
1 parent dec1ab0 commit acc2f3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Modules/_testcapimodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -3185,11 +3185,11 @@ eval_eval_code_ex(PyObject *mod, PyObject *pos_args)
globals,
locals,
c_args,
c_args_len,
(int)c_args_len,
c_kwargs,
c_kwargs_len,
(int)c_kwargs_len,
c_defaults,
c_defaults_len,
(int)c_defaults_len,
kw_defaults,
closure
);
Expand Down

0 comments on commit acc2f3b

Please sign in to comment.