[pypy-svn] r3742 - pypy/trunk/doc/funding

hpk at codespeak.net hpk at codespeak.net
Sun Apr 4 20:15:21 CEST 2004


Author: hpk
Date: Sun Apr  4 20:15:21 2004
New Revision: 3742

Modified:
   pypy/trunk/doc/funding/B6.0_detailed_implementation.txt
Log:
- rewrote the first two sentences of B6.0 to talk about the novel 
  stuff we are doing not the already-existing stuff we are repeating
  


Modified: pypy/trunk/doc/funding/B6.0_detailed_implementation.txt
==============================================================================
--- pypy/trunk/doc/funding/B6.0_detailed_implementation.txt	(original)
+++ pypy/trunk/doc/funding/B6.0_detailed_implementation.txt	Sun Apr  4 20:15:21 2004
@@ -52,20 +52,20 @@
 Phase 1
 -------
 
-The first goal is to develop a reasonably complete Python interpreter written
-in Python. It must be entirely compatible with the language specification. It
+The first phase will provide a novel architecture for research of a VHLL language. 
+It is to be compatible with the language specification of Python and 
 consists of the following major parts:
 
 - A *bytecode compiler,* which inputs Python source code and outputs an internal
-  intermediate representation, the *bytecode.*
+  intermediate representation, the *bytecode*.
 
 - A *bytecode interpreter,* which interprets bytecodes and manages the
   supporting internal structures (frames, exception tracebacks...). It
   considers objects as black boxes and delegates all individual operations on
   them to a library of built-in types, the *Object Space.*
 
-- An *Object Space,* which captures the semantics of the various types of the
-  language.
+- An *Object Space,* which captures the semantics of the various types
+  and objects of the language.
 
 This subdivision is common among interpreter implementations, although we
 place special emphasis on the library of built-in types and its separation


More information about the Pypy-commit mailing list