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

pedronis at codespeak.net pedronis at codespeak.net
Sun Nov 5 10:57:03 CET 2006


Author: pedronis
Date: Sun Nov  5 10:57:02 2006
New Revision: 34209

Modified:
   pypy/dist/pypy/doc/_ref.txt
   pypy/dist/pypy/doc/garbage_collection.txt
Log:
fix reference to objectmodel.py



Modified: pypy/dist/pypy/doc/_ref.txt
==============================================================================
--- pypy/dist/pypy/doc/_ref.txt	(original)
+++ pypy/dist/pypy/doc/_ref.txt	Sun Nov  5 10:57:02 2006
@@ -47,6 +47,7 @@
 .. _`objspace/thunk.py`: ../../pypy/objspace/thunk.py
 .. _`objspace/trace.py`:
 .. _`pypy/objspace/trace.py`: ../../pypy/objspace/trace.py
+.. _`pypy/rlib/objectmodel.py`: ../../pypy/rlib/objectmodel.py
 .. _`pypy/rpython`:
 .. _`pypy/rpython/`:
 .. _`rpython/`: ../../pypy/rpython
@@ -61,7 +62,6 @@
 .. _`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/ootypesystem/ootype.py`: ../../pypy/rpython/ootypesystem/ootype.py
 .. _`pypy/rpython/rctypes/test/test_ctypes.py`: ../../pypy/rpython/rctypes/test/test_ctypes.py
 .. _`rpython/rint.py`: ../../pypy/rpython/rint.py

Modified: pypy/dist/pypy/doc/garbage_collection.txt
==============================================================================
--- pypy/dist/pypy/doc/garbage_collection.txt	(original)
+++ pypy/dist/pypy/doc/garbage_collection.txt	Sun Nov  5 10:57:02 2006
@@ -178,7 +178,7 @@
 
 Instance creation is done the regular way, to free an instance there is a
 special function ``free_non_gc_object`` defined in
-`pypy/rpython/objectmodel.py`_. Trying to access any attribute of the instance
+`pypy/rlib/objectmodel.py`_. Trying to access any attribute of the instance
 after it was freed gives an exception (which is not equivalent to the
 behaviour after translation: there it would just lead to a crash) Example::
 



More information about the Pypy-commit mailing list