[pypy-svn] r49937 - pypy/dist/pypy/doc

antocuni at codespeak.net antocuni at codespeak.net
Wed Dec 19 17:53:27 CET 2007


Author: antocuni
Date: Wed Dec 19 17:53:26 2007
New Revision: 49937

Modified:
   pypy/dist/pypy/doc/geninterp.txt
Log:
remove references to the dead _classobj.py



Modified: pypy/dist/pypy/doc/geninterp.txt
==============================================================================
--- pypy/dist/pypy/doc/geninterp.txt	(original)
+++ pypy/dist/pypy/doc/geninterp.txt	Wed Dec 19 17:53:26 2007
@@ -19,15 +19,6 @@
 
 .. _`application-level`: coding-guide.html#app-preferable
 .. _exceptions: ../../pypy/lib/_exceptions.py
-.. _oldstyle: ../../pypy/lib/_classobj.py
-
-Examples are exceptions_ and oldstyle_ classes. They are
-needed in a very early phase of bootstrapping StdObjspace, but
-for simplicity, they are written as RPythonic application
-level code. This implies that the interpreter must be quite
-completely initialized to execute this code, which is
-impossible in the early phase, where we have neither
-exceptions implemented nor classes available.
 
 Solution
 ++++++++
@@ -178,10 +169,9 @@
 +++++++++++++++++++++++++++++++++++
 
 .. _`_exceptions.py`: ../../pypy/lib/_exceptions.py
-.. _`_classobj.py`: ../../pypy/lib/_classobj.py
 
 Code written in application space can consist of complete files
-to be translated (`_exceptions.py`_, `_classobj.py`_), or they
+to be translated (e.g. `_exceptions.py`_), or they
 can be tiny snippets scattered all over a source file, similar
 to our example from above.
 



More information about the Pypy-commit mailing list