summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_traceback.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-19 04:05:59 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-04-19 04:05:59 (GMT)
commit614827c1497701e4fe45d5cd55552ebfaa5d924c (patch)
treea15e9cfbe9614a530083537cd341abc4669712c6 /Lib/test/test_traceback.py
parentabe4d52a1a175b784a5ccae6f31638fb9bf7bfe4 (diff)
downloadcpython-614827c1497701e4fe45d5cd55552ebfaa5d924c.zip
cpython-614827c1497701e4fe45d5cd55552ebfaa5d924c.tar.gz
cpython-614827c1497701e4fe45d5cd55552ebfaa5d924c.tar.bz2
Additional grammar fix
Diffstat (limited to 'Lib/test/test_traceback.py')
-rw-r--r--Lib/test/test_traceback.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_traceback.py b/Lib/test/test_traceback.py
index 2f739ba..5e4b6a2 100644
--- a/Lib/test/test_traceback.py
+++ b/Lib/test/test_traceback.py
@@ -175,7 +175,7 @@ class SyntaxTracebackCases(unittest.TestCase):
text, charset, 5)
do_test(" \t\f\n# coding: {0}\n".format(charset),
text, charset, 5)
- # Issue #18960: coding spec should has no effect
+ # Issue #18960: coding spec should have no effect
do_test("x=0\n# coding: GBK\n", "h\xe9 ho", 'utf-8', 5)
def test_print_traceback_at_exit(self):