From 411b1692811b2ecac59cb0df0f920861c7cf179a Mon Sep 17 00:00:00 2001 From: Mark Shannon Date: Wed, 12 Apr 2023 12:04:55 +0100 Subject: GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-103083) * The majority of the monitoring code is in instrumentation.c * The new instrumentation bytecodes are in bytecodes.c * legacy_tracing.c adapts the new API to the old sys.setrace and sys.setprofile APIs --- Python/makeopcodetargets.py | 1 - 1 file changed, 1 deletion(-) (limited to 'Python/makeopcodetargets.py') diff --git a/Python/makeopcodetargets.py b/Python/makeopcodetargets.py index 33a4b4a76a..5aa3180339 100755 --- a/Python/makeopcodetargets.py +++ b/Python/makeopcodetargets.py @@ -32,7 +32,6 @@ def write_contents(f): """ opcode = find_module('opcode') targets = ['_unknown_opcode'] * 256 - targets[255] = "TARGET_DO_TRACING" for opname, op in opcode.opmap.items(): if not opcode.is_pseudo(op): targets[op] = "TARGET_%s" % opname -- cgit v1.2.1