Explain how old modules cannot load into a new interpreter.

This commit is contained in:
Martin v. Löwis 2006-02-12 09:13:57 +00:00
parent 66f71648c5
commit 55dc576c22
1 changed files with 4 additions and 0 deletions

View File

@ -80,6 +80,10 @@ At places where a conversion from size_t/Py_ssize_t to
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
=====================