[pypy-commit] pypy py3k: 20 nested blocks is a limitation of cpython; skip this test else it hangs: this is a partial port of rev b3bb9ebd9346 for 2.7

antocuni noreply at buildbot.pypy.org
Tue Jul 17 18:10:51 CEST 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r56102:e296b1472ce1
Date: 2012-07-17 11:06 +0200
http://bitbucket.org/pypy/pypy/changeset/e296b1472ce1/

Log:	20 nested blocks is a limitation of cpython; skip this test else it
	hangs: this is a partial port of rev b3bb9ebd9346 for 2.7

diff --git a/lib-python/3.2/test/test_syntax.py b/lib-python/3.2/test/test_syntax.py
--- a/lib-python/3.2/test/test_syntax.py
+++ b/lib-python/3.2/test/test_syntax.py
@@ -343,7 +343,7 @@
 In 2.5 there was a missing exception and an assert was triggered in a debug
 build.  The number of blocks must be greater than CO_MAXBLOCKS.  SF #1565514
 
-   >>> while 1:
+   >>> while 1: # doctest:+SKIP
    ...  while 2:
    ...   while 3:
    ...    while 4:


More information about the pypy-commit mailing list