From: Mark Shannon Date: Tue, 14 Jun 2022 14:03:15 +0000 (+0100) Subject: Remove LOAD_METHOD stats. (GH-93807) X-Git-Tag: v3.12.0a1~1261 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ef6e44d392dc45a60b4699a6dd9dbae875a50b2f;p=thirdparty%2FPython%2Fcpython.git Remove LOAD_METHOD stats. (GH-93807) --- diff --git a/Python/specialize.c b/Python/specialize.c index 11bd838a4018..421bb44a896a 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");