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

hpk at codespeak.net hpk at codespeak.net
Sun Apr 17 23:35:56 CEST 2005


Author: hpk
Date: Sun Apr 17 23:35:56 2005
New Revision: 10800

Modified:
   pypy/dist/pypy/documentation/objspace.txt
Log:
don't just start with wrapping rules


Modified: pypy/dist/pypy/documentation/objspace.txt
==============================================================================
--- pypy/dist/pypy/documentation/objspace.txt	(original)
+++ pypy/dist/pypy/documentation/objspace.txt	Sun Apr 17 23:35:56 2005
@@ -5,17 +5,18 @@
 .. contents::
 .. sectnum::
 
-This document is an overview of the implementation of PyPy's `Object Spaces`_.
 
 .. _`Object Spaces`: architecture.html#the-object-space
 
 
+Introduction 
+============
+
+This document describes aspects of the implementation of PyPy's `Object Spaces`_.
+
 Wrapping rules
 ==============
 
-Introduction
-------------
-
 PyPy is made of Python source code at two levels: there is on the one hand *application-level code* that looks like normal Python code, and that implements some functionalities as one would expect from Python code (e.g. one can give a pure Python implementation of some built-in functions like ``zip()``).  There is also *interpreter-level code* for the functionalities that must more directly manipulate interpreter data and objects (e.g. the main loop of the interpreter, and the various object spaces).
 
 Application-level code doesn't see object spaces explicitely: it runs using an object space to support the objects it manipulates, but this is implicit.  There is no need for particular conventions for application-level code.  The sequel is only about interpreter-level code.  (Ideally, no application-level variable should be called ``space`` or ``w_xxx`` to avoid confusion.)



More information about the Pypy-commit mailing list