From 4f5d39b98cc760dcb7641bb71bdaeb2933b1ee40 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Tue, 13 Dec 2016 19:03:51 -0500 Subject: 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). --- PC/launcher.c | 1 + 1 file changed, 1 insertion(+) (limited to 'PC/launcher.c') diff --git a/PC/launcher.c b/PC/launcher.c index d11df437b9..e628845154 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 } }; -- cgit v1.2.1