diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-24 06:15:14 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-24 06:15:14 (GMT) |
commit | b0f80b0312a99ca46323efc0e4d09b567553ed46 (patch) | |
tree | 323c414ce867d58fe60e127b4275e9931855a72f /PC | |
parent | c35f491a06bb55cba097ddcd9fcbc9452ec21fb1 (diff) | |
download | cpython-b0f80b0312a99ca46323efc0e4d09b567553ed46.zip cpython-b0f80b0312a99ca46323efc0e4d09b567553ed46.tar.gz cpython-b0f80b0312a99ca46323efc0e4d09b567553ed46.tar.bz2 |
Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode.
Patch by Demur Rumed.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/launcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/launcher.c b/PC/launcher.c index e4d3e8e..909705d 100644 --- a/PC/launcher.c +++ b/PC/launcher.c @@ -1089,7 +1089,7 @@ static PYC_MAGIC magic_values[] = { { 3190, 3230, L"3.3" }, { 3250, 3310, L"3.4" }, { 3320, 3350, L"3.5" }, - { 3360, 3361, L"3.6" }, + { 3360, 3370, L"3.6" }, { 0 } }; |