summaryrefslogtreecommitdiffstats
path: root/Lib/dis.py
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2022-12-21 16:55:02 (GMT)
committerGitHub <noreply@github.com>2022-12-21 16:55:02 (GMT)
commite0b4d966a8d1867c4b535b043e08288ca49b3548 (patch)
tree44cc2efe2953d1754a91ce504c6db8fe074a99dc /Lib/dis.py
parentb98d2d31bffcaeb0c4c8848a8d1b35419c70b2da (diff)
downloadcpython-e0b4d966a8d1867c4b535b043e08288ca49b3548.zip
cpython-e0b4d966a8d1867c4b535b043e08288ca49b3548.tar.gz
cpython-e0b4d966a8d1867c4b535b043e08288ca49b3548.tar.bz2
Remove unused variable from `dis._find_imports` (#100396)
Diffstat (limited to 'Lib/dis.py')
-rw-r--r--Lib/dis.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/dis.py b/Lib/dis.py
index 523bd01..76104c6 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