[Python-checkins] cpython (3.1): Kill last reference to defunct module

eric.araujo python-checkins at python.org
Wed Apr 27 16:37:34 CEST 2011


http://hg.python.org/cpython/rev/97c31d27456e
changeset:   69596:97c31d27456e
branch:      3.1
parent:      68951:ec25055d30f1
user:        Éric Araujo <merwok at netwok.org>
date:        Sat Mar 26 07:22:01 2011 +0100
summary:
  Kill last reference to defunct module

files:
  Doc/c-api/intro.rst |  3 +--
  1 files changed, 1 insertions(+), 2 deletions(-)


diff --git a/Doc/c-api/intro.rst b/Doc/c-api/intro.rst
--- a/Doc/c-api/intro.rst
+++ b/Doc/c-api/intro.rst
@@ -511,13 +511,12 @@
    module: builtins
    module: __main__
    module: sys
-   module: exceptions
    triple: module; search; path
    single: path (in module sys)
 
 The basic initialization function is :cfunc:`Py_Initialize`. This initializes
 the table of loaded modules, and creates the fundamental modules
-:mod:`builtins`, :mod:`__main__`, :mod:`sys`, and :mod:`exceptions`.  It also
+:mod:`builtins`, :mod:`__main__`, and :mod:`sys`.  It also
 initializes the module search path (``sys.path``).
 
 .. index:: single: PySys_SetArgv()

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list