[pypy-svn] r13841 - pypy/extradoc/sprintinfo

arigo at codespeak.net arigo at codespeak.net
Sat Jun 25 13:12:07 CEST 2005


Author: arigo
Date: Sat Jun 25 13:12:05 2005
New Revision: 13841

Modified:
   pypy/extradoc/sprintinfo/pre-ep2005-planning.txt
Log:
Listing missing operations


Modified: pypy/extradoc/sprintinfo/pre-ep2005-planning.txt
==============================================================================
--- pypy/extradoc/sprintinfo/pre-ep2005-planning.txt	(original)
+++ pypy/extradoc/sprintinfo/pre-ep2005-planning.txt	Sat Jun 25 13:12:05 2005
@@ -15,10 +15,79 @@
     need for translation.     
 
   - (hard) a few more operations: issubtype, ...?
-        task: go through all space operations listed in baseobjspace.py
-              annotator/{unary.py,binary.py} 
-              one by one and decide if they should be supported
-  
+      found to be missing (ale, arigo):
+
+            Builtins
+            --------
+
+            apply
+            callable
+            compile
+            hasattr
+            long
+            slice
+            tuple
+            unicode
+            zip
+            xrange
+            max
+
+            math_floor
+            math_fmod
+            ovfcheck
+            ovfcheck_lshift
+
+            sys.getrefcount
+            sys.getdefaultencoding
+
+            time.time
+
+            os.path.dirname
+            os.path.normpath
+            os.path.join
+            os.path.exists
+            os.path.isdir
+
+            __import__
+
+
+            Unary operations
+            ----------------
+
+            rclass: issubtype
+
+            rdict: method_get
+                   method_copy
+                   method_update
+                   method_keys
+                   method_values
+                   method_items
+
+            fix the code not to use str.split()
+
+            rpbc: is_true
+
+
+            Binary operations
+            -----------------
+
+            cmp ?
+            rint: divmod
+            coerce ??
+
+            rstr: mul, inplace_mul
+
+
+            Overridden functions in PyPy
+            ----------------------------
+
+            override:ignore
+            override:instantiate
+            override:wrap_exception_cls
+            override:fake_object
+            override:cpy_compile
+
+
 * DONE (ale, arre) lltype will also need to grow a new primitive type, UnicodeChar.
 
 * (partially DONE) convert each file that does 



More information about the Pypy-commit mailing list