From a6d7d0ffa5c2e877ba88d3edcda8799082a3bc32 Mon Sep 17 00:00:00 2001 From: Pablo Galindo Date: Mon, 3 May 2021 15:52:00 +0100 Subject: [PATCH] bpo-43754: Fix compiler warning in Python/compile.c This fixes the following warning: 'initializing': conversion from 'Py_ssize_t' to 'int', possible loss of data [D:\a\cpython\cpython\PCbuild\pythoncore.vcxproj] --- Python/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/compile.c b/Python/compile.c index 7cc75ada472c7c..4fc8b38d978289 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -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)) {