[Python-checkins] Remove LOAD_METHOD stats. (GH-93807)

markshannon webhook-mailer at python.org
Tue Jun 14 10:03:20 EDT 2022


https://github.com/python/cpython/commit/ef6e44d392dc45a60b4699a6dd9dbae875a50b2f
commit: ef6e44d392dc45a60b4699a6dd9dbae875a50b2f
branch: main
author: Mark Shannon <mark at hotpy.org>
committer: markshannon <mark at hotpy.org>
date: 2022-06-14T15:03:15+01:00
summary:

Remove LOAD_METHOD stats. (GH-93807)

files:
M Python/specialize.c

diff --git a/Python/specialize.c b/Python/specialize.c
index 11bd838a40186..421bb44a896a9 100644
--- a/Python/specialize.c
+++ b/Python/specialize.c
@@ -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");



More information about the Python-checkins mailing list