[Python-checkins] cpython (3.4): test_faulthandler: fix typo

victor.stinner python-checkins at python.org
Thu Sep 25 00:40:41 CEST 2014


https://hg.python.org/cpython/rev/820dd1bbdbac
changeset:   92567:820dd1bbdbac
branch:      3.4
parent:      92565:132e2fe31d9f
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Thu Sep 25 00:38:48 2014 +0200
summary:
  test_faulthandler: fix typo

files:
  Lib/test/test_faulthandler.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py
--- a/Lib/test/test_faulthandler.py
+++ b/Lib/test/test_faulthandler.py
@@ -220,7 +220,7 @@
             """
         not_expected = 'Fatal Python error'
         stderr, exitcode = self.get_output(code)
-        stder = '\n'.join(stderr)
+        stderr = '\n'.join(stderr)
         self.assertTrue(not_expected not in stderr,
                      "%r is present in %r" % (not_expected, stderr))
         self.assertNotEqual(exitcode, 0)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list