diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-08-09 00:52:26 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-08-09 00:52:26 (GMT) |
commit | 8e24a9678f497ef40b01040d29ff260337da1e77 (patch) | |
tree | 54b335b6047ea6b676055177d7e3201f6bcfc6fa | |
parent | 7572f0322a5711de1ce798655b5735fddf725772 (diff) | |
download | cpython-8e24a9678f497ef40b01040d29ff260337da1e77.zip cpython-8e24a9678f497ef40b01040d29ff260337da1e77.tar.gz cpython-8e24a9678f497ef40b01040d29ff260337da1e77.tar.bz2 |
Whitespace normalization.
-rw-r--r-- | Lib/test/test_builtin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py index 9d9b1f9..70480be 100644 --- a/Lib/test/test_builtin.py +++ b/Lib/test/test_builtin.py @@ -1432,7 +1432,7 @@ class BuiltinTest(unittest.TestCase): self.assertEqual(input('testing\n'), 2) self.assertEqual(raw_input(), 'The quick brown fox jumps over the lazy dog.') self.assertEqual(raw_input('testing\n'), 'Dear John') - + # SF 1535165: don't segfault on closed stdin # sys.stdout must be a regular file for triggering sys.stdout = savestdout |