]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-45203: fix compiler warnings (GH-28357)
authorKen Jin <28750310+Fidget-Spinner@users.noreply.github.com>
Fri, 17 Sep 2021 09:48:44 +0000 (17:48 +0800)
committerGitHub <noreply@github.com>
Fri, 17 Sep 2021 09:48:44 +0000 (17:48 +0800)
Co-authored-by: Mark Shannon <mark@hotpy.org>
Python/specialize.c

index 52e2cf96159292b106b6adf62d64379b13a7ee47..8e04c8372d76c927071309b31f1500a6246203d1 100644 (file)
@@ -875,6 +875,7 @@ load_method_fail_kind(DesciptorClassification kind)
         case ABSENT:
             return SPEC_FAIL_EXPECTED_ERROR;
     }
+    Py_UNREACHABLE();
 }
 #endif