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

adim at codespeak.net adim at codespeak.net
Sat Jul 2 13:53:46 CEST 2005


Author: adim
Date: Sat Jul  2 13:53:45 2005
New Revision: 14086

Modified:
   pypy/dist/pypy/annotation/unaryop.py
Log:
defined unary operations for string.upper and string.lower

Modified: pypy/dist/pypy/annotation/unaryop.py
==============================================================================
--- pypy/dist/pypy/annotation/unaryop.py	(original)
+++ pypy/dist/pypy/annotation/unaryop.py	Sat Jul  2 13:53:45 2005
@@ -324,6 +324,12 @@
     def method_replace(str, s1, s2):
         return SomeString()
 
+    def method_lower(str):
+        return SomeString()
+
+    def method_upper(str):
+        return SomeString()
+
 
 class __extend__(SomeChar):
 



More information about the Pypy-commit mailing list