cpython: 64b87578c071 (original) (raw)
Mercurial > cpython
changeset 82579:64b87578c071 3.2
#11963: fix Windows buildbots. [#11963]
Ezio Melotti ezio.melotti@gmail.com | |
---|---|
date | Sun, 10 Mar 2013 03:25:45 +0200 |
parents | 10a82140f36d |
children | f683ca2b30e3 222505a5aeac |
files | Lib/test/test_parser.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-)[+] [-] Lib/test/test_parser.py 3 |
line wrap: on
line diff
--- a/Lib/test/test_parser.py +++ b/Lib/test/test_parser.py @@ -611,7 +611,8 @@ class ParserStackLimitTestCase(unittest. rc, out, err = assert_python_failure('-c', e) # parsing the expression will result in an error message # followed by a MemoryError (see #11963)
self.assertEqual(err, b's_push: parser stack overflow\nMemoryError')[](#l1.7)
self.assertIn(b's_push: parser stack overflow', err)[](#l1.8)
self.assertIn(b'MemoryError', err)[](#l1.9)
class STObjectTestCase(unittest.TestCase): """Test operations on ST objects themselves"""