[Python-checkins] r55088 - peps/trunk/pep-3121.txt

martin.v.loewis python-checkins at python.org
Thu May 3 09:00:06 CEST 2007


Author: martin.v.loewis
Date: Thu May  3 09:00:04 2007
New Revision: 55088

Modified:
   peps/trunk/pep-3121.txt
Log:
Retitle, clarifying that the PEP talks about
extension modules.


Modified: peps/trunk/pep-3121.txt
==============================================================================
--- peps/trunk/pep-3121.txt	(original)
+++ peps/trunk/pep-3121.txt	Thu May  3 09:00:04 2007
@@ -1,5 +1,5 @@
 PEP: 3121
-Title: Module Initialization and finalization
+Title: Extension Module Initialization and Finalization
 Version: $Revision$
 Last-Modified: $Date$
 Author: Martin v. Löwis <martin at v.loewis.de>
@@ -13,11 +13,11 @@
 Abstract
 ========
 
-Module initialization currently has a few deficiencies.  There is no
-cleanup for modules, the entry point name might give naming conflicts,
-the entry functions don't follow the usual calling convention, and
-multiple interpreters are not supported well. This PEP addresses these
-issues.
+Extension module initialization currently has a few deficiencies.
+There is no cleanup for modules, the entry point name might give
+naming conflicts, the entry functions don't follow the usual calling
+convention, and multiple interpreters are not supported well. This PEP
+addresses these issues.
 
 Problems
 ========


More information about the Python-checkins mailing list