summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2021-05-03 15:20:46 (GMT)
committerGitHub <noreply@github.com>2021-05-03 15:20:46 (GMT)
commit39494285e15dc2d291ec13de5045b930eaf0a3db (patch)
tree5974da6b88f612ad522edc2b3ae1c9e16982a35c
parentc2931d31f8ba7cf10044de276018c713ffc73592 (diff)
downloadcpython-39494285e15dc2d291ec13de5045b930eaf0a3db.zip
cpython-39494285e15dc2d291ec13de5045b930eaf0a3db.tar.gz
cpython-39494285e15dc2d291ec13de5045b930eaf0a3db.tar.bz2
bpo-43754: Fix compiler warning in Python/compile.c (GH-25855)
This fixes the following warning: 'initializing': conversion from 'Py_ssize_t' to 'int', possible loss of data [D:\a\cpython\cpython\PCbuild\pythoncore.vcxproj]
-rw-r--r--Python/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 7cc75ad..4fc8b38 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)) {