summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_parser.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-06-29 13:54:42 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-06-29 13:54:42 (GMT)
commit88909540ffb2f25daee528f5bc2859d6fe253cbc (patch)
tree24d7f61505b252441e0f1aff8d4bff2a59600acc /Lib/test/test_parser.py
parent6fbdfdabb616caa7bc815fb8bfae802302ac2fff (diff)
downloadcpython-88909540ffb2f25daee528f5bc2859d6fe253cbc.zip
cpython-88909540ffb2f25daee528f5bc2859d6fe253cbc.tar.gz
cpython-88909540ffb2f25daee528f5bc2859d6fe253cbc.tar.bz2
Merged revisions 73072 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73072 | antoine.pitrou | 2009-05-31 16:20:14 +0200 (dim., 31 mai 2009) | 4 lines Issue #6152: New option '-j'/'--multiprocess' for regrtest allows running regression tests in parallel, shortening the total runtime. ........
Diffstat (limited to 'Lib/test/test_parser.py')
-rw-r--r--Lib/test/test_parser.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_parser.py b/Lib/test/test_parser.py
index 65d1d35..340ae2f 100644
--- a/Lib/test/test_parser.py
+++ b/Lib/test/test_parser.py
@@ -496,6 +496,7 @@ class ParserStackLimitTestCase(unittest.TestCase):
e = self._nested_expression(100)
print("Expecting 's_push: parser stack overflow' in next line",
file=sys.stderr)
+ sys.stderr.flush()
self.assertRaises(MemoryError, parser.expr, e)
class STObjectTestCase(unittest.TestCase):