[pypy-svn] r8569 - pypy/dist/pypy/annotation

mwh at codespeak.net mwh at codespeak.net
Tue Jan 25 15:51:43 CET 2005


Author: mwh
Date: Tue Jan 25 15:51:43 2005
New Revision: 8569

Modified:
   pypy/dist/pypy/annotation/builtin.py
Log:
builtin_repr


Modified: pypy/dist/pypy/annotation/builtin.py
==============================================================================
--- pypy/dist/pypy/annotation/builtin.py	(original)
+++ pypy/dist/pypy/annotation/builtin.py	Tue Jan 25 15:51:43 2005
@@ -120,6 +120,9 @@
 def builtin_str(s_obj):
     return SomeString()
 
+def builtin_repr(s_obj):
+    return SomeString()
+
 def builtin_list(s_iterable):
     factory = getbookkeeper().getfactory(ListFactory)
     s_iter = s_iterable.iter()



More information about the Pypy-commit mailing list