]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-40147: Fix a compiler warning on Windows in Python/compile.c (GH-19389)
authorZackery Spytz <zspytz@gmail.com>
Mon, 6 Apr 2020 06:47:47 +0000 (00:47 -0600)
committerGitHub <noreply@github.com>
Mon, 6 Apr 2020 06:47:47 +0000 (07:47 +0100)
Change the type of nkeywords to Py_ssize_t.

Python/compile.c

index b1c1982fd2c4aeccb93aaadd309b4a63840a6272..329add9d068babf0a95a09ce2d414c9ebf8bb421 100644 (file)
@@ -4050,14 +4050,15 @@ maybe_optimize_method_call(struct compiler *c, expr_ty e)
 }
 
 static int
-validate_keywords(struct compiler *c, asdl_seq* keywords) {
-    int nkeywords = asdl_seq_LEN(keywords);
-    for (int i = 0; i < nkeywords; i++) {
+validate_keywords(struct compiler *c, asdl_seq *keywords)
+{
+    Py_ssize_t nkeywords = asdl_seq_LEN(keywords);
+    for (Py_ssize_t i = 0; i < nkeywords; i++) {
         keyword_ty key = ((keyword_ty)asdl_seq_GET(keywords, i));
         if (key->arg == NULL) {
             continue;
         }
-        for (int j = i+1; j < nkeywords; j++) {
+        for (Py_ssize_t j = i + 1; j < nkeywords; j++) {
             keyword_ty other = ((keyword_ty)asdl_seq_GET(keywords, j));
             if (other->arg && !PyUnicode_Compare(key->arg, other->arg)) {
                 PyObject *msg = PyUnicode_FromFormat("keyword argument repeated: %U", key->arg);