aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonan Lamy <ronan.lamy@gmail.com>2019-08-02 18:03:38 +0100
committerRonan Lamy <ronan.lamy@gmail.com>2019-08-02 18:03:38 +0100
commite85a213f4b603b90ead7014092a610910418d79a (patch)
treee225e89eda45be45cd6a2e6cb298e91a3750b068 /lib-python/3/opcode.py
parentFix v3.6.1 import so that the process described in stdlib-upgrade.txt works a... (diff)
downloadpypy-e85a213f4b603b90ead7014092a610910418d79a.tar.gz
pypy-e85a213f4b603b90ead7014092a610910418d79a.tar.bz2
pypy-e85a213f4b603b90ead7014092a610910418d79a.zip
Update to git tag v3.6.9
Diffstat (limited to 'lib-python/3/opcode.py')
-rw-r--r--lib-python/3/opcode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-python/3/opcode.py b/lib-python/3/opcode.py
index b5916b6619..eb6bb8e6dd 100644
--- a/lib-python/3/opcode.py
+++ b/lib-python/3/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)