[pypy-svn] r16203 - pypy/dist/pypy/documentation

hpk at codespeak.net hpk at codespeak.net
Mon Aug 22 16:03:50 CEST 2005


Author: hpk
Date: Mon Aug 22 16:03:48 2005
New Revision: 16203

Modified:
   pypy/dist/pypy/documentation/ext-functions-draft.txt
Log:
fix ReST


Modified: pypy/dist/pypy/documentation/ext-functions-draft.txt
==============================================================================
--- pypy/dist/pypy/documentation/ext-functions-draft.txt	(original)
+++ pypy/dist/pypy/documentation/ext-functions-draft.txt	Mon Aug 22 16:03:48 2005
@@ -23,3 +23,13 @@
 * the backends will have implementations for these helper functions
   (to allow writing such implementations we will need a way to assign
   fixed names for some of the defined lltypes introduced by the rtyper)
+
+* XXX: integrate the following refinement:: 
+
+      interplevel: os.open()
+      annotation knows it returns an int. 
+      rtyper knows to subst by a dummy ll_os_open
+      def ll_os_open(...): 
+          fd = oslevel_open(...) 
+          if fd == -1: 
+            raise ... 



More information about the Pypy-commit mailing list