[pypy-svn] r64258 - in pypy/trunk/pypy/doc: . config

arigo at codespeak.net arigo at codespeak.net
Fri Apr 17 13:27:13 CEST 2009


Author: arigo
Date: Fri Apr 17 13:27:12 2009
New Revision: 64258

Modified:
   pypy/trunk/pypy/doc/config/objspace.usemodules._minimal_curses.txt
   pypy/trunk/pypy/doc/cpython_differences.txt
Log:
Turn into links the nonstandard modules.


Modified: pypy/trunk/pypy/doc/config/objspace.usemodules._minimal_curses.txt
==============================================================================
--- pypy/trunk/pypy/doc/config/objspace.usemodules._minimal_curses.txt	(original)
+++ pypy/trunk/pypy/doc/config/objspace.usemodules._minimal_curses.txt	Fri Apr 17 13:27:12 2009
@@ -1,2 +1,2 @@
 Use the '_curses' module.
-This module is just a stub.
+This module is just a stub.  It only implements a few functions.

Modified: pypy/trunk/pypy/doc/cpython_differences.txt
==============================================================================
--- pypy/trunk/pypy/doc/cpython_differences.txt	(original)
+++ pypy/trunk/pypy/doc/cpython_differences.txt	Fri Apr 17 13:27:12 2009
@@ -16,18 +16,15 @@
 
 List of extension modules that we support:
 
-* Supported as built-in modules (in `pypy/module/`_)
-  (``_minimal_curses`` is a custom subset of curses;
-  ``_rawffi`` is a custom module for ctypes integration;
-  ``dyngram`` is a custom module for grammar tricks):
+* Supported as built-in modules (in `pypy/module/`_):
 
     __builtin__
-    __pypy__
+    `__pypy__`_
     _codecs
     _lsprof
-    _minimal_curses
+    `_minimal_curses`_
     _random
-    _rawffi
+    `_rawffi`_
     _socket
     _sre
     _ssl
@@ -35,7 +32,7 @@
     bz2
     cStringIO
     crypt
-    dyngram
+    `dyngram`_
     errno
     exceptions
     fcntl
@@ -70,6 +67,12 @@
 The extension modules (i.e. modules written in C, in the standard CPython)
 that are not mentioned above are not available in PyPy.
 
+.. the nonstandard modules are listed below...
+.. _`__pypy__`: __pypy__-module.html
+.. _`_rawffi`: ctypes-implementation.html
+.. _`_minimal_curses`: config/objspace.usemodules._minimal_curses.html
+.. _`dyngram`: config/objspace.usemodules.dyngram.html
+
 
 Differences related to garbage collection strategies
 ----------------------------------------------------



More information about the Pypy-commit mailing list