]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove LOAD_METHOD stats. (GH-93807)
authorMark Shannon <mark@hotpy.org>
Tue, 14 Jun 2022 14:03:15 +0000 (15:03 +0100)
committerGitHub <noreply@github.com>
Tue, 14 Jun 2022 14:03:15 +0000 (15:03 +0100)
Python/specialize.c

index 11bd838a4018601df39305d83eb1d0b0303266fa..421bb44a896a944a6173ce679f4fd1521ae6fef9 100644 (file)
@@ -111,7 +111,6 @@ _Py_GetSpecializationStats(void) {
     int err = 0;
     err += add_stat_dict(stats, LOAD_ATTR, "load_attr");
     err += add_stat_dict(stats, LOAD_GLOBAL, "load_global");
-    err += add_stat_dict(stats, LOAD_METHOD, "load_method");
     err += add_stat_dict(stats, BINARY_SUBSCR, "binary_subscr");
     err += add_stat_dict(stats, STORE_SUBSCR, "store_subscr");
     err += add_stat_dict(stats, STORE_ATTR, "store_attr");