[pypy-svn] r77634 - pypy/branch/fast-forward/pypy/interpreter/pyparser/test

afa at codespeak.net afa at codespeak.net
Tue Oct 5 21:44:50 CEST 2010


Author: afa
Date: Tue Oct  5 21:44:49 2010
New Revision: 77634

Modified:
   pypy/branch/fast-forward/pypy/interpreter/pyparser/test/test_pyparse.py
Log:
Add a failing test


Modified: pypy/branch/fast-forward/pypy/interpreter/pyparser/test/test_pyparse.py
==============================================================================
--- pypy/branch/fast-forward/pypy/interpreter/pyparser/test/test_pyparse.py	(original)
+++ pypy/branch/fast-forward/pypy/interpreter/pyparser/test/test_pyparse.py	Tue Oct  5 21:44:49 2010
@@ -100,6 +100,10 @@
         tree = self.parse("x = 43", "single")
         assert tree.type == syms.single_input
 
+    def test_multiline_string(self):
+        self.parse("''' \n '''")
+        self.parse("r''' \n '''")
+
     def test_bytes_literal(self):
         self.parse('b" "')
         self.parse('br" "')



More information about the Pypy-commit mailing list