[issue10024] Outdated advice in C-API tutorial?

2010-10-16 Thread Georg Brandl
Changes by Georg Brandl : -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue10024] Outdated advice in C-API tutorial?

2010-10-05 Thread Martin v . Löwis
Martin v. Löwis added the comment: The advice is still necessary, AFAIK. The issue is Windows, in particular producing function pointers across DLL boundaries. In Python core, this is not an issue, since the references will all be inside pythonXY.dll. -- _

[issue10024] Outdated advice in C-API tutorial?

2010-10-04 Thread Antoine Pitrou
New submission from Antoine Pitrou : In http://docs.python.org/dev/extending/newtypes.html, you can read: “To enable object creation, we have to provide a tp_new implementation. In this case, we can just use the default implementation provided by the API function PyType_GenericNew(). We’d like