Skip to content

Commit

Permalink
bpo-43754: Fix compiler warning in Python/compile.c (GH-25855)
Browse files Browse the repository at this point in the history
This fixes the following warning:

'initializing': conversion from 'Py_ssize_t' to 'int', possible loss of data [D:\a\cpython\cpython\PCbuild\pythoncore.vcxproj]
  • Loading branch information
pablogsal authored May 3, 2021
1 parent c2931d3 commit 3949428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/compile.c
Original file line number Diff line number Diff line change
Expand Up @@ -6144,7 +6144,7 @@ compiler_pattern_or(struct compiler *c, pattern_ty p, pattern_context *pc)
// - A copy of the subject.
// - Anything else that may be on top of the stack.
// - Any previous stores we've already stashed away on the stack.
int nrots = nstores + 1 + pc->on_top + PyList_GET_SIZE(pc->stores);
Py_ssize_t nrots = nstores + 1 + pc->on_top + PyList_GET_SIZE(pc->stores);
for (Py_ssize_t i = 0; i < nstores; i++) {
// Rotate this capture to its proper place on the stack:
if (!compiler_addop_i(c, ROT_N, nrots)) {
Expand Down

0 comments on commit 3949428

Please sign in to comment.