[issue18091] Remove PyNoArgsFunction

2020-01-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I cannot report a bug in Blender, because get an exception on link https://developer.blender.org/maniphest/project/2/type/Bug/ . -- ___ Python tracker

[issue18091] Remove PyNoArgsFunction

2020-01-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Removed in issue39372 together with other unused declarations. PyNoArgsFunction was the only one that breaks a user code. But using PyNoArgsFunction is likely a sign of error. -- nosy: +serhiy.storchaka resolution: -> duplicate stage: needs patch

[issue18091] Remove PyNoArgsFunction

2013-05-30 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18091 ___

[issue18091] Remove PyNoArgsFunction

2013-05-29 Thread Larry Hastings
Larry Hastings added the comment: Either of you gentlemen care to offer an opinion? -- nosy: +benjamin.peterson, pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18091 ___

[issue18091] Remove PyNoArgsFunction

2013-05-29 Thread Benjamin Peterson
Benjamin Peterson added the comment: If you want to convince Blender to stop using it, you can kill it. It's seems fairly harmless, though. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18091

[issue18091] Remove PyNoArgsFunction

2013-05-28 Thread Larry Hastings
New submission from Larry Hastings: There's a typedef in methodobject.h called PyNoArgsFunction. You might think it's used for METH_NOARGS functions--you'd be wrong, those use PyCFunction and pass in NULL for args. No, PyNoArgsFunction is never used. Nor is it documented. It's found in