summaryrefslogtreecommitdiff
path: root/Lib/dis.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/dis.py')
-rw-r--r--Lib/dis.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dis.py b/Lib/dis.py
index 205e9d8d19..c0e5367afb 100644
--- a/Lib/dis.py
+++ b/Lib/dis.py
@@ -264,7 +264,7 @@ _Instruction.positions.__doc__ = "dis.Positions object holding the span of sourc
_ExceptionTableEntry = collections.namedtuple("_ExceptionTableEntry",
"start end target depth lasti")
-_OPNAME_WIDTH = max(map(len, opmap))
+_OPNAME_WIDTH = 20
_OPARG_WIDTH = 5
class Instruction(_Instruction):