summaryrefslogtreecommitdiff
path: root/Lib/opcode.py
diff options
context:
space:
mode:
authorLeo Arias <leo.arias@canonical.com>2018-02-03 18:36:10 -0600
committerTerry Jan Reedy <tjreedy@udel.edu>2018-02-03 19:36:10 -0500
commitc3d9508ff22ece9a96892b628dd5813e2fb0cd80 (patch)
tree56271a3b3e3681e47e97ec2dca926bc9cb891a5e /Lib/opcode.py
parent589c718a8e3bde017350f248f7f1c009240eb52b (diff)
downloadcpython-git-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.tar.gz
bpo-32746: Fix multiple typos (GH-5144)
Fix typos found by codespell in docs, docstrings, and comments.
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r--Lib/opcode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py
index 8f45f0a666..368472d981 100644
--- a/Lib/opcode.py
+++ b/Lib/opcode.py
@@ -142,7 +142,7 @@ name_op('LOAD_NAME', 101) # Index in name list
def_op('BUILD_TUPLE', 102) # Number of tuple items
def_op('BUILD_LIST', 103) # Number of list items
def_op('BUILD_SET', 104) # Number of set items
-def_op('BUILD_MAP', 105) # Number of dict entries (upto 255)
+def_op('BUILD_MAP', 105) # Number of dict entries
name_op('LOAD_ATTR', 106) # Index in name list
def_op('COMPARE_OP', 107) # Comparison operator
hascompare.append(107)