[pypy-svn] r19401 - pypy/release/0.8.x/pypy/doc

mwh at codespeak.net mwh at codespeak.net
Wed Nov 2 12:49:50 CET 2005


Author: mwh
Date: Wed Nov  2 12:49:49 2005
New Revision: 19401

Modified:
   pypy/release/0.8.x/pypy/doc/getting-started.txt
Log:
add unfinished sections about pypy/interpreter/pyparser and
pypy/interpreter/astcompiler.

reword a sentence.


Modified: pypy/release/0.8.x/pypy/doc/getting-started.txt
==============================================================================
--- pypy/release/0.8.x/pypy/doc/getting-started.txt	(original)
+++ pypy/release/0.8.x/pypy/doc/getting-started.txt	Wed Nov  2 12:49:49 2005
@@ -526,14 +526,20 @@
    module.py_ and mixedmodule.py_.  Core types supporting the bytecode 
    interpreter are defined in typedef.py_.
 
+*  `pypy/interpreter/pyparser`_ contains the parser.  XXX more!  New
+   in 0.8.0.
+
+*  `pypy/interpreter/astcompiler`_ contains the compiler.  XXX more!  New
+   in 0.8.0.
+
 *  `pypy/objspace/std`_ contains the `Standard object space`_.  The main file
    is objspace.py_.  For each type, the files ``xxxtype.py`` and
    ``xxxobject.py`` contain respectively the definition of the type and its
    (default) implementation.
 
-*  `pypy/objspace`_ contains a few other object spaces: the thunk_
-   one, the trace_ one, the flow_ one.  The latter is a relatively short piece
-   of  code that builds the control flow graphs when the bytecode interpreter
+*  `pypy/objspace`_ contains a few other object spaces: the thunk_,
+   trace_ and flow_ object spaces.  The latter is a relatively short piece
+   of code that builds the control flow graphs when the bytecode interpreter
    runs in it.
 
 *  `pypy/translator`_ contains the code analysis and generation stuff.



More information about the Pypy-commit mailing list