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

hpk at codespeak.net hpk at codespeak.net
Sun Jul 3 20:12:23 CEST 2005


Author: hpk
Date: Sun Jul  3 20:12:19 2005
New Revision: 14177

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

small fixes


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	Sun Jul  3 20:12:19 2005
@@ -1,6 +1,6 @@
 example of interp-level code needing to somehow call an external function:
 ::
-
+    import os
     def open(space, w_fname):
         fname = space.str_w(fname)
         fd = os.open(fname)
@@ -8,10 +8,10 @@
 
 * os.open will be special-cased along all translation levels, there
   will be a table mapping "sys calls" functions to the information
-  needed by the various level.
+  needed by the various levels.
  
-* annotation/builtin.py will take information from the common table to
-  annotate the calls.
+* annotation/builtin.py will take information from the common table 
+  to annotate the calls.
 
 * rtyper will replace the calls with for testing or dummy lowlevel
   functions (ll_os_open for os.open), specified somehow trough the



More information about the Pypy-commit mailing list