Message105307
On Sat, May 8, 2010 at 8:07 AM, Martin v. Löwis <report@bugs.python.org> wrote:
> 1. add a flag to PyModuleDef, indicating whether the module was built in UCS-2 or UCS-4 mode. Then let the interpreter refuse the load the module, instead of having the dynamic linker do so.
> 2. provide a mode for the header files where Py_UNICODE is not defined. add another flag to PyModuleDef indicating whether that mode was used when compiling the extension.
I notice that PyModule_Create currently works like this:
PyAPI_FUNC(PyObject *) PyModule_Create2(struct PyModuleDef*, int apiver);
#define PyModule_Create(module) \
PyModule_Create2(module, PYTHON_API_VERSION)
Instead of modifying PyModuleDef, what if we changed PyModule_Create
to something like the following?
PyAPI_FUNC(PyObject *) PyModule_Create3(struct PyModuleDef*, int apiver);
#define PyModule_Create(module) \
PyModule_Create3(module, PYTHON_API_VERSION, PYTHON_UNICODE_SETTING)
In most cases that will Just Work, without requiring the module writer
to modify their PyModuleDef. |
|
Date |
User |
Action |
Args |
2010-05-08 16:11:06 | stutzbach | set | recipients:
+ stutzbach, lemburg, gvanrossum, loewis, zooko, scoder, vstinner, r.david.murray |
2010-05-08 16:11:05 | stutzbach | link | issue8654 messages |
2010-05-08 16:11:04 | stutzbach | create | |
|