Steve Dower added the comment:

Unfortunately, there's no way too remove defined names from the DLL during 
Python 3 at all, except where the prototype was never provided. PyCFunction_New 
has always been a macro, and PySys_SetDefaultEncoding looks to have been 
removed before the API was committed.

Maintaining an export and a macro is going to be awkward, so I think we should 
just change them back to functions. Any half-decent optimizing compiler is 
going to inline it within core, and it's better than having two implementations 
in different places of the same function.

But yes I agree, fix the def first and then automate. But I don't want to fix 
it but adding things that were never usable.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue23903>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to