[pypy-svn] pypy default: use test skipping

gutworth commits-noreply at bitbucket.org
Tue Mar 1 05:03:42 CET 2011


Author: Benjamin Peterson <benjamin at python.org>
Branch: 
Changeset: r42363:36c913eb1084
Date: 2011-02-28 22:02 -0600
http://bitbucket.org/pypy/pypy/changeset/36c913eb1084/

Log:	use test skipping

diff --git a/pypy/interpreter/pyparser/test/test_futureautomaton.py b/pypy/interpreter/pyparser/test/test_futureautomaton.py
--- a/pypy/interpreter/pyparser/test/test_futureautomaton.py
+++ b/pypy/interpreter/pyparser/test/test_futureautomaton.py
@@ -224,7 +224,8 @@
 # This looks like a bug in cpython parser
 # and would require extensive modifications
 # to future.py in order to emulate the same behaviour
-def __test_continuation_lines_raise():
+def test_continuation_lines_raise():
+    py.test.skip("probably a CPython bug")
     s = "   \\\n  \t\\\nfrom __future__ import with_statement\n"
     try:
         f = run(s)


More information about the Pypy-commit mailing list