summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-03-20 21:47:48 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-03-20 21:47:48 (GMT)
commita051bf3afbb30b7ddb7bd4c7ba03acc63288d6f2 (patch)
tree8d2fe8a1e6edbbae0ae6b0dd193a38d4033ef9fd /Lib/test/test_importlib
parentfc6990d3824340dd86f085250aac37267d57194f (diff)
parente431d3c9aadb52dd1eea4d1e606e94f1c8471459 (diff)
downloadcpython-a051bf3afbb30b7ddb7bd4c7ba03acc63288d6f2.zip
cpython-a051bf3afbb30b7ddb7bd4c7ba03acc63288d6f2.tar.gz
cpython-a051bf3afbb30b7ddb7bd4c7ba03acc63288d6f2.tar.bz2
Issue #26581: Use the first coding cookie on a line, not the last one.
Diffstat (limited to 'Lib/test/test_importlib')
-rw-r--r--Lib/test/test_importlib/source/test_source_encoding.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_importlib/source/test_source_encoding.py b/Lib/test/test_importlib/source/test_source_encoding.py
index b604afb..1e0771b 100644
--- a/Lib/test/test_importlib/source/test_source_encoding.py
+++ b/Lib/test/test_importlib/source/test_source_encoding.py
@@ -14,7 +14,7 @@ import unittest
import warnings
-CODING_RE = re.compile(r'^[ \t\f]*#.*coding[:=][ \t]*([-\w.]+)', re.ASCII)
+CODING_RE = re.compile(r'^[ \t\f]*#.*?coding[:=][ \t]*([-\w.]+)', re.ASCII)
class EncodingTest: