aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2018-02-03 21:00:24 -0500
committerGitHub <noreply@github.com>2018-02-03 21:00:24 -0500
commitc90a5dec03fbef3a26479c800d5d6d15c44d5afb (patch)
tree6b0f79b280eec408940226df246dc05de4dd50c7 /Lib/opcode.py
parentUpdate Doc build for split off of 3.7 branch (diff)
downloadcpython-c90a5dec03fbef3a26479c800d5d6d15c44d5afb.tar.gz
cpython-c90a5dec03fbef3a26479c800d5d6d15c44d5afb.tar.bz2
cpython-c90a5dec03fbef3a26479c800d5d6d15c44d5afb.zip
[3.6] bpo-32746: Fix multiple typos (GH-5144) (GH-5522)
Fix typos found by codespell in docs, docstrings, and comments. Fixes for the following files were in post-3.6 code and not backported: Lib/ctypes/_aix.py (new), Lib/test/test_concurrent_futures.py, Modules/_asynciomodule.c, Modules/_pickle.c, Objects/obmalloc.c. (cherry picked from commit c3d9508ff22ece9a96892b628dd5813e2fb0cd80)
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 b5916b6619e..eb6bb8e6dd0 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)