
Originally Posted by
jplauril
You probably use the macro versions of memory management functions in your extension (PyObject_NEW, PyMem_MALLOC etc.). These macros are not supported in Python for Series 60 release 1.0. Use the equivalent functions (PyObject_New, PyMem_Malloc etc.) instead.
The macro versions try to invoke the internal memory management functions (symport_malloc etc.) directly, which doesn't work since the Python DLL doesn't export those functions. Yes, this can be considered a bug in the Python release.