diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-12 06:35:13 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-12 06:35:13 (GMT) |
commit | cf2ad555113e4afc6f8cd5ac5235deef6a3fdf82 (patch) | |
tree | 902999b38abc5e4f99f7d101e6fb0bc3dd3212a2 /Lib/importlib | |
parent | 52855452711eb2df1900470d387b58dede3ac941 (diff) | |
parent | 3c317e76a2fe78896b546e08fa753075463e7d41 (diff) | |
download | cpython-cf2ad555113e4afc6f8cd5ac5235deef6a3fdf82.zip cpython-cf2ad555113e4afc6f8cd5ac5235deef6a3fdf82.tar.gz cpython-cf2ad555113e4afc6f8cd5ac5235deef6a3fdf82.tar.bz2 |
Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. Calling
function with generalized unpacking (PEP 448) and conflicting keyword names
could cause undefined behavior.
Diffstat (limited to 'Lib/importlib')
-rw-r--r-- | Lib/importlib/_bootstrap_external.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py index b05281f..18aec06 100644 --- a/Lib/importlib/_bootstrap_external.py +++ b/Lib/importlib/_bootstrap_external.py @@ -223,6 +223,7 @@ _code_type = type(_write_atomic.__code__) # Python 3.5b1 3330 (PEP 448: Additional Unpacking Generalizations) # Python 3.5b2 3340 (fix dictionary display evaluation order #11205) # Python 3.5b2 3350 (add GET_YIELD_FROM_ITER opcode #24400) +# Python 3.5.2 3351 (fix BUILD_MAP_UNPACK_WITH_CALL opcode #27286) # Python 3.6a0 3360 (add FORMAT_VALUE opcode #25483 # Python 3.6a0 3361 (lineno delta of code.co_lnotab becomes signed) # Python 3.6a0 3370 (16 bit wordcode) |