Merged revisions 81163 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81163 | victor.stinner | 2010-05-14 16:20:07 +0200 (ven., 14 mai 2010) | 2 lines

  Doc: replace PEP xxx by :pep:`xxx` to create a link on the PEP
........
This commit is contained in:
Victor Stinner 2010-05-14 14:36:18 +00:00
parent 9467b212f5
commit 766ad36de5
6 changed files with 13 additions and 13 deletions

View file

@ -120,7 +120,7 @@ can also be used in some cases. ::
Module initialization and state
===============================
Python 3.0 has a revamped extension module initialization system. (See PEP
Python 3.0 has a revamped extension module initialization system. (See
:pep:`3121`.) Instead of storing module state in globals, they should be stored
in an interpreter specific structure. Creating modules that act correctly in
both 2.x and 3.0 is tricky. The following simple example demonstrates how. ::