summaryrefslogtreecommitdiffstats
path: root/Lib/opcode.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2024-06-13 14:14:50 (GMT)
committerGitHub <noreply@github.com>2024-06-13 14:14:50 (GMT)
commit6ae254aaa0a5a3985a52d1ab387a2b68c001bd96 (patch)
tree09a2b03e9721203f5b6b523fbb26db13f36e8569 /Lib/opcode.py
parentca5108a46d5da3978d4bd29717ea3fbdee772e66 (diff)
downloadcpython-6ae254aaa0a5a3985a52d1ab387a2b68c001bd96.zip
cpython-6ae254aaa0a5a3985a52d1ab387a2b68c001bd96.tar.gz
cpython-6ae254aaa0a5a3985a52d1ab387a2b68c001bd96.tar.bz2
gh-120417: Add #noqa to used imports in the stdlib (#120421)
Tools such as ruff can ignore "imported but unused" warnings if a line ends with "# noqa: F401". It avoids the temptation to remove an import which is used effectively.
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r--Lib/opcode.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py
index 85e37ff..85c0834 100644
--- a/Lib/opcode.py
+++ b/Lib/opcode.py
@@ -12,8 +12,8 @@ __all__ = ["cmp_op", "stack_effect", "hascompare", "opname", "opmap",
import _opcode
from _opcode import stack_effect
-from _opcode_metadata import (_specializations, _specialized_opmap, opmap,
- HAVE_ARGUMENT, MIN_INSTRUMENTED_OPCODE)
+from _opcode_metadata import (_specializations, _specialized_opmap, opmap, # noqa: F401
+ HAVE_ARGUMENT, MIN_INSTRUMENTED_OPCODE) # noqa: F401
EXTENDED_ARG = opmap['EXTENDED_ARG']
opname = ['<%r>' % (op,) for op in range(max(opmap.values()) + 1)]