diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-03-20 21:36:29 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-03-20 21:36:29 (GMT) |
commit | e431d3c9aadb52dd1eea4d1e606e94f1c8471459 (patch) | |
tree | 5154063f2e6048881fa88675efd6dfb4bd2f5c4f /Lib/idlelib | |
parent | 97eee1cfda602df25866a6a62796f675caf52323 (diff) | |
download | cpython-e431d3c9aadb52dd1eea4d1e606e94f1c8471459.zip cpython-e431d3c9aadb52dd1eea4d1e606e94f1c8471459.tar.gz cpython-e431d3c9aadb52dd1eea4d1e606e94f1c8471459.tar.bz2 |
Issue #26581: Use the first coding cookie on a line, not the last one.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/IOBinding.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/IOBinding.py b/Lib/idlelib/IOBinding.py index a4cc205..84f39a2 100644 --- a/Lib/idlelib/IOBinding.py +++ b/Lib/idlelib/IOBinding.py @@ -62,7 +62,7 @@ locale_encoding = locale_encoding.lower() encoding = locale_encoding ### KBK 07Sep07 This is used all over IDLE, check! ### 'encoding' is used below in encode(), check! -coding_re = re.compile(r'^[ \t\f]*#.*coding[:=][ \t]*([-\w.]+)', re.ASCII) +coding_re = re.compile(r'^[ \t\f]*#.*?coding[:=][ \t]*([-\w.]+)', re.ASCII) blank_re = re.compile(r'^[ \t\f]*(?:[#\r\n]|$)', re.ASCII) def coding_spec(data): |