STINNER Victor added the comment:

Would it be possible to add an assertion to _PyArg_NoKeywords() to prevent 
regressions? Fail if funcname contains "(" or ")". For example:

/* funcname must not contain ( or ), since "()" suffix is added in the error 
message */
assert(!strchr(funcname, '(') && !strchr(funcname, ')'));

----------
nosy: +haypo

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

Reply via email to