[pypy-svn] r26549 - pypy/dist/pypy/rpython/test

ac at codespeak.net ac at codespeak.net
Sat Apr 29 05:20:26 CEST 2006


Author: ac
Date: Sat Apr 29 05:20:26 2006
New Revision: 26549

Modified:
   pypy/dist/pypy/rpython/test/test_rstr.py
Log:
(aleale, arre) A failing test for nik.

Modified: pypy/dist/pypy/rpython/test/test_rstr.py
==============================================================================
--- pypy/dist/pypy/rpython/test/test_rstr.py	(original)
+++ pypy/dist/pypy/rpython/test/test_rstr.py	Sat Apr 29 05:20:26 2006
@@ -302,6 +302,9 @@
 
     res = interpret(lambda: ''.join(['abc', 'de', 'fghi']), [])
     assert ''.join(res.chars) == "abcdefghi"
+
+    #res = interpret(lambda: '.'.join(['abc', 'def']), [])
+    #assert ''.join(res.chars) == 'abc.def'
     
     def fn(i, j):
         s1 = [ '', ',', ' and ']



More information about the Pypy-commit mailing list