[Python-checkins] r42331 - peps/trunk/pep-0353.txt

martin.v.loewis python-checkins at python.org
Sun Feb 12 10:13:57 CET 2006


Author: martin.v.loewis
Date: Sun Feb 12 10:13:57 2006
New Revision: 42331

Modified:
   peps/trunk/pep-0353.txt
Log:
Explain how old modules cannot load into a new interpreter.


Modified: peps/trunk/pep-0353.txt
==============================================================================
--- peps/trunk/pep-0353.txt	(original)
+++ peps/trunk/pep-0353.txt	Sun Feb 12 10:13:57 2006
@@ -80,6 +80,10 @@
 int is necessary, the strategy for conversion is chosen
 on a case-by-case basis (see next section).
 
+To prevent loading extension modules that assume a 32-bit
+size type into an interpreter that has a 64-bit size type,
+Py_InitModule4 is renamed to Py_InitModule4_64.
+
 
 Conversion guidelines
 =====================


More information about the Python-checkins mailing list