diff options
author | Yury Selivanov <yury@magic.io> | 2016-12-14 00:03:51 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2016-12-14 00:03:51 (GMT) |
commit | f2392133eba777f05947a8996c507690b95379c3 (patch) | |
tree | 3d3e352b04691dabeab1eb8502c2417d2af04826 /PC | |
parent | e6bb53bf61ac24feca775bdaa651433b8466d2fa (diff) | |
download | cpython-f2392133eba777f05947a8996c507690b95379c3.zip cpython-f2392133eba777f05947a8996c507690b95379c3.tar.gz cpython-f2392133eba777f05947a8996c507690b95379c3.tar.bz2 |
Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes.
Special thanks to INADA Naoki for pushing the patch through
the last mile, Serhiy Storchaka for reviewing the code, and to
Victor Stinner for suggesting the idea (originally implemented
in the PyPy project).
Diffstat (limited to 'PC')
-rw-r--r-- | PC/launcher.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/PC/launcher.c b/PC/launcher.c index d11df43..e628845 100644 --- a/PC/launcher.c +++ b/PC/launcher.c @@ -1090,6 +1090,7 @@ static PYC_MAGIC magic_values[] = { { 3250, 3310, L"3.4" }, { 3320, 3351, L"3.5" }, { 3360, 3379, L"3.6" }, + { 3390, 3399, L"3.7" }, { 0 } }; |