summaryrefslogtreecommitdiff
path: root/Parser
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-03-20 23:36:29 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2016-03-20 23:36:29 +0200
commite431d3c9aadb52dd1eea4d1e606e94f1c8471459 (patch)
tree5154063f2e6048881fa88675efd6dfb4bd2f5c4f /Parser
parent97eee1cfda602df25866a6a62796f675caf52323 (diff)
downloadcpython-git-e431d3c9aadb52dd1eea4d1e606e94f1c8471459.tar.gz
Issue #26581: Use the first coding cookie on a line, not the last one.
Diffstat (limited to 'Parser')
-rw-r--r--Parser/tokenizer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c
index 1cdbae20dc..50ce2e88c9 100644
--- a/Parser/tokenizer.c
+++ b/Parser/tokenizer.c
@@ -275,6 +275,7 @@ get_coding_spec(const char *s, char **spec, Py_ssize_t size, struct tok_state *t
return 0;
}
*spec = r;
+ break;
}
}
}