summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_traceback.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-01-09 18:13:52 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-01-09 18:13:52 (GMT)
commit5940b929095173be65c9faf04f4bdf429742c8c4 (patch)
treeab161bc17f1ca54914b0df9001ea23a8954cf8f5 /Lib/test/test_traceback.py
parenta118c4fa7909c62e7aee1e25e02bc4172683772e (diff)
parent1064a13bb05db8f6e86a3fe780f969fa2919a1d1 (diff)
downloadcpython-5940b929095173be65c9faf04f4bdf429742c8c4.zip
cpython-5940b929095173be65c9faf04f4bdf429742c8c4.tar.gz
cpython-5940b929095173be65c9faf04f4bdf429742c8c4.tar.bz2
Do not reset the line number because we already set file position to correct
value. (fixes error in patch for issue #18960)
Diffstat (limited to 'Lib/test/test_traceback.py')
-rw-r--r--Lib/test/test_traceback.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_traceback.py b/Lib/test/test_traceback.py
index 96ef951..172f5b5 100644
--- a/Lib/test/test_traceback.py
+++ b/Lib/test/test_traceback.py
@@ -146,6 +146,10 @@ class SyntaxTracebackCases(unittest.TestCase):
text, charset, 4)
do_test("#!shebang\n# coding: {0}\n".format(charset),
text, charset, 5)
+ do_test(" \t\f\n# coding: {0}\n".format(charset),
+ text, charset, 5)
+ # Issue #18960: coding spec should has no effect
+ do_test("0\n# coding: GBK\n", "h\xe9 ho", 'utf-8', 5)
class TracebackFormatTests(unittest.TestCase):