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

pedronis at codespeak.net pedronis at codespeak.net
Tue Sep 20 15:49:18 CEST 2005


Author: pedronis
Date: Tue Sep 20 15:49:16 2005
New Revision: 17693

Modified:
   pypy/dist/pypy/annotation/unaryop.py
Log:
annotation for more is* methods



Modified: pypy/dist/pypy/annotation/unaryop.py
==============================================================================
--- pypy/dist/pypy/annotation/unaryop.py	(original)
+++ pypy/dist/pypy/annotation/unaryop.py	Tue Sep 20 15:49:16 2005
@@ -411,6 +411,16 @@
     def method_isspace(chr):
         return SomeBool()
 
+    def method_isdigit(chr):
+        return SomeBool()
+
+    def method_isalpha(chr):
+        return SomeBool()
+
+    def method_isalnum(chr):
+        return SomeBool()
+
+
 class __extend__(SomeUnicodeCodePoint):
 
     def ord(uchr):



More information about the Pypy-commit mailing list