[issue30627] Incorrect error message for a few functions called with keywod argument

2017-06-15 Thread SylvainDe
Changes by SylvainDe : -- pull_requests: +2263 ___ Python tracker ___ ___

[issue30627] Incorrect error message for a few functions called with keywod argument

2017-06-15 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker

[issue30627] Incorrect error message for a few functions called with keywod argument

2017-06-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Good catch SylvainDe! You already opened a new ticked and old tickets are closed, so that let fix remaining issues here. This issue is related to _PyArg_NoKeywords() and _PyArg_NoStackKeywords(), so it is enough to just check all usages of these functions.

[issue30627] Incorrect error message for a few functions called with keywod argument

2017-06-10 Thread SylvainDe
SylvainDe added the comment: (Also, I suspect introspection could be used to know if the same bug is still lying somewhere: get all objects (using gc?), keep callables with no __code__ member only, call with keyword argument, check error.) -- ___

[issue30627] Incorrect error message for a few functions called with keywod argument

2017-06-10 Thread SylvainDe
New submission from SylvainDe: Follow-up for http://bugs.python.org/issue30600 which is itself a follow-up for http://bugs.python.org/issue30534 . Not quite sure what the process is in that situation : creating a new ticket or updating the old one ? After working on