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

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Sep 1 05:24:23 CEST 2005


Author: cfbolz
Date: Thu Sep  1 05:24:13 2005
New Revision: 17135

Added:
   pypy/dist/pypy/doc/garbage_collection.txt
      - copied, changed from r17103, pypy/dist/pypy/doc/gc_planning.txt
Removed:
   pypy/dist/pypy/doc/gc_planning.txt
Modified:
   pypy/dist/pypy/doc/_ref.txt
   pypy/dist/pypy/doc/index.txt
   pypy/dist/pypy/doc/translation.txt
Log:
documentation about the recent garbage collection work


Modified: pypy/dist/pypy/doc/_ref.txt
==============================================================================
--- pypy/dist/pypy/doc/_ref.txt	(original)
+++ pypy/dist/pypy/doc/_ref.txt	Thu Sep  1 05:24:13 2005
@@ -39,11 +39,16 @@
 .. _`pypy/rpython`:
 .. _`rpython/`: ../../pypy/rpython
 .. _`pypy/rpython/extfunctable.py`: ../../pypy/rpython/extfunctable.py
-.. _`pypy/rpython/lltype.py`:
-.. _`rpython/lltype.py`: ../../pypy/rpython/lltype.py
+.. _`rpython/lltype.py`:
+.. _`pypy/rpython/lltype.py`: ../../pypy/rpython/lltype.py
+.. _`pypy/rpython/memory/gc.py`: ../../pypy/rpython/memory/gc.py
+.. _`pypy/rpython/memory/lladdress.py`: ../../pypy/rpython/memory/lladdress.py
+.. _`pypy/rpython/memory/simulator.py`: ../../pypy/rpython/memory/simulator.py
+.. _`pypy/rpython/memory/support.py`: ../../pypy/rpython/memory/support.py
 .. _`pypy/rpython/module/`: ../../pypy/rpython/module
 .. _`pypy/rpython/module/ll_os.py`: ../../pypy/rpython/module/ll_os.py
 .. _`pypy/rpython/module/test`: ../../pypy/rpython/module/test
+.. _`pypy/rpython/objectmodel.py`: ../../pypy/rpython/objectmodel.py
 .. _`rpython/rint.py`: ../../pypy/rpython/rint.py
 .. _`rpython/rlist.py`: ../../pypy/rpython/rlist.py
 .. _`rpython/rmodel.py`: ../../pypy/rpython/rmodel.py

Modified: pypy/dist/pypy/doc/index.txt
==============================================================================
--- pypy/dist/pypy/doc/index.txt	(original)
+++ pypy/dist/pypy/doc/index.txt	Thu Sep  1 05:24:13 2005
@@ -23,6 +23,9 @@
 `parser`_ contains the beginnings of documentation about
 the parser (and the compiler at some point). 
 
+`garbage collection`_ contains documentation about
+garbage collection in PyPy.
+
 `FAQ`_ contains the beginning of frequently asked questions.
 Right now it's a bit empty.
 
@@ -50,7 +53,7 @@
 .. _`getting started`: getting-started.html 
 .. _`theory`: theory.html
 .. _`bytecode interpreter`: interpreter.html 
-
+.. _`garbage collection`: garbage_collection.html
 .. _`directory reference`: 
 
 PyPy directory cross-reference 

Modified: pypy/dist/pypy/doc/translation.txt
==============================================================================
--- pypy/dist/pypy/doc/translation.txt	(original)
+++ pypy/dist/pypy/doc/translation.txt	Thu Sep  1 05:24:13 2005
@@ -921,6 +921,8 @@
         exception-catching links.)
 
 
+.. _LLInterpreter:
+
 The LLInterpreter
 -----------------
 



More information about the Pypy-commit mailing list