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

fijal at codespeak.net fijal at codespeak.net
Wed Dec 5 13:04:29 CET 2007


Author: fijal
Date: Wed Dec  5 13:04:29 2007
New Revision: 49375

Modified:
   pypy/dist/pypy/rpython/test/test_llinterp.py
Log:
Allow the very same hack for unicode as for string


Modified: pypy/dist/pypy/rpython/test/test_llinterp.py
==============================================================================
--- pypy/dist/pypy/rpython/test/test_llinterp.py	(original)
+++ pypy/dist/pypy/rpython/test/test_llinterp.py	Wed Dec  5 13:04:29 2007
@@ -86,6 +86,8 @@
                 return object
             elif T == Ptr(rstr.STR):
                 return str
+            elif T == Ptr(rstr.UNICODE):
+                return unicode
             else:
                 return lltype_to_annotation(T)
 



More information about the Pypy-commit mailing list