Marc-Andre Lemburg added the comment:

Looking through Python's history, it's interesting that PyObject_Call() did 
apply the args == NULL checks up until Python 2.1.

In Python 2.2 this was replaced by a direct call to tp_call, without the 
checks. However, the tp_call slots don't do this check as you can see in 
function_call() of function objects. And indeed, the documentation of 
PyObject_Call() was changed in that version as well to disallow args == NULL.

----------

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

Reply via email to