summaryrefslogtreecommitdiff
path: root/PC
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2019-08-24 13:11:52 +0300
committerGitHub <noreply@github.com>2019-08-24 13:11:52 +0300
commitef61c524ddeeb56da3858b86e349e7288d68178e (patch)
treee8a9defe85faff05464db6335140eb0990499f15 /PC
parente9c90aa43144b0be1e4e393e8cb549573437a5da (diff)
downloadcpython-git-ef61c524ddeeb56da3858b86e349e7288d68178e.tar.gz
bpo-37830: Fix compilation of break and continue in finally. (GH-15320)
Fix compilation of "break" and "continue" in the "finally" block when the corresponding "try" block contains "return" with a non-constant value.
Diffstat (limited to 'PC')
-rw-r--r--PC/launcher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/launcher.c b/PC/launcher.c
index ed5ead329e..d23637c54c 100644
--- a/PC/launcher.c
+++ b/PC/launcher.c
@@ -1139,7 +1139,7 @@ static PYC_MAGIC magic_values[] = {
{ 3320, 3351, L"3.5" },
{ 3360, 3379, L"3.6" },
{ 3390, 3399, L"3.7" },
- { 3400, 3410, L"3.8" },
+ { 3400, 3419, L"3.8" },
{ 0 }
};