[pypy-svn] r16657 - pypy/release/0.7.x/pypy/doc

cfbolz at codespeak.net cfbolz at codespeak.net
Fri Aug 26 18:11:45 CEST 2005


Author: cfbolz
Date: Fri Aug 26 18:11:43 2005
New Revision: 16657

Modified:
   pypy/release/0.7.x/pypy/doc/_ref.txt
   pypy/release/0.7.x/pypy/doc/coding-guide.txt
   pypy/release/0.7.x/pypy/doc/index.txt
   pypy/release/0.7.x/pypy/doc/translation.txt
Log:
add a reference to the new external function call section to
coding-guide. remove llvm2 references.


Modified: pypy/release/0.7.x/pypy/doc/_ref.txt
==============================================================================
--- pypy/release/0.7.x/pypy/doc/_ref.txt	(original)
+++ pypy/release/0.7.x/pypy/doc/_ref.txt	Fri Aug 26 18:11:43 2005
@@ -50,5 +50,5 @@
 .. _`pypy/translator/annrpython.py`: ../../pypy/translator/annrpython.py
 .. _`translator/c/`: ../../pypy/translator/c
 .. _`translator/java/`: ../../pypy/translator/java
-.. _`translator/llvm2/`: ../../pypy/translator/llvm2
+.. _`translator/llvm/`: ../../pypy/translator/llvm
 .. _`translator/tool/`: ../../pypy/translator/tool
\ No newline at end of file

Modified: pypy/release/0.7.x/pypy/doc/coding-guide.txt
==============================================================================
--- pypy/release/0.7.x/pypy/doc/coding-guide.txt	(original)
+++ pypy/release/0.7.x/pypy/doc/coding-guide.txt	Fri Aug 26 18:11:43 2005
@@ -634,6 +634,11 @@
 Only specified names will be exported to a Mixed Module's applevel
 namespace.
 
+Sometimes it is neccessary to really write some functions in C (or whatever
+target language). See the `external functions documentation`_ for details.
+
+.. _`external functions documentation`: translation.html#extfunccalls
+
 application level definitions
 .............................
 

Modified: pypy/release/0.7.x/pypy/doc/index.txt
==============================================================================
--- pypy/release/0.7.x/pypy/doc/index.txt	(original)
+++ pypy/release/0.7.x/pypy/doc/index.txt	Fri Aug 26 18:11:43 2005
@@ -113,7 +113,7 @@
 
 `translator/java/`_            experimental code to utilize Java for annotation 
 
-`translator/llvm2/`_           contains the `LLVM backend`_ producing LLVM assembler 
+`translator/llvm/`_            contains the `LLVM backend`_ producing LLVM assembler 
                                from fully annotated RPython programs 
 
 `translator/tool/`_            helper tools for translation 

Modified: pypy/release/0.7.x/pypy/doc/translation.txt
==============================================================================
--- pypy/release/0.7.x/pypy/doc/translation.txt	(original)
+++ pypy/release/0.7.x/pypy/doc/translation.txt	Fri Aug 26 18:11:43 2005
@@ -1170,9 +1170,7 @@
 XXX to be added later
 
 
-
-.. include:: _ref.txt
-
+.. _extfunccalls:
 
 External Function Calls
 =======================
@@ -1362,4 +1360,7 @@
 
 .. _`mixed posix module`: ../module/posix/
 .. _`pypy/rpython/module/ll_os.py`: ../rpython/module/ll_os.py
-.. _`pypy/translator/c/src/ll_os.h`: ../translator/c/src/ll_os.h
\ No newline at end of file
+.. _`pypy/translator/c/src/ll_os.h`: ../translator/c/src/ll_os.h
+
+
+.. include:: _ref.txt



More information about the Pypy-commit mailing list