From: Nikita Sobolev Date: Wed, 21 Dec 2022 16:55:02 +0000 (+0300) Subject: Remove unused variable from `dis._find_imports` (#100396) X-Git-Tag: v3.12.0a4~170 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e0b4d966a8d1867c4b535b043e08288ca49b3548;p=thirdparty%2FPython%2Fcpython.git Remove unused variable from `dis._find_imports` (#100396) --- diff --git a/Lib/dis.py b/Lib/dis.py index 523bd01d9295..76104c6098d4 100644 --- a/Lib/dis.py +++ b/Lib/dis.py @@ -666,7 +666,6 @@ def _find_imports(co): the corresponding args to __import__. """ IMPORT_NAME = opmap['IMPORT_NAME'] - LOAD_CONST = opmap['LOAD_CONST'] consts = co.co_consts names = co.co_names