summaryrefslogtreecommitdiff
path: root/Lib/test/test_traceback.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-07-24 21:02:15 +0000
committerTim Peters <tim.peters@gmail.com>2006-07-24 21:02:15 +0000
commit0bbfd832504565d6c2a19907424ed29bc2ff52c2 (patch)
treeaa0b65228fa9465c5c4f6e23987288170a8d73e5 /Lib/test/test_traceback.py
parentafb44f47d9a90ce85ddfb23f91bedb9e1064b035 (diff)
downloadcpython-git-0bbfd832504565d6c2a19907424ed29bc2ff52c2.tar.gz
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_traceback.py')
-rw-r--r--Lib/test/test_traceback.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_traceback.py b/Lib/test/test_traceback.py
index 4ecd2cd109..7f0ede5b3a 100644
--- a/Lib/test/test_traceback.py
+++ b/Lib/test/test_traceback.py
@@ -112,7 +112,7 @@ def test():
self.assertEqual(lst, ['KeyboardInterrupt\n'])
# String exceptions are deprecated, but legal. The quirky form with
- # separate "type" and "value" tends to break things, because
+ # separate "type" and "value" tends to break things, because
# not isinstance(value, type)
# and a string cannot be the first argument to issubclass.
#
@@ -139,7 +139,7 @@ def test():
err = traceback.format_exception_only(str_type, str_value)
self.assert_(len(err) == 1)
self.assert_(err[0] == str_type + ': ' + str_value + '\n')
-
+
def test_main():
run_unittest(TracebackCases)