This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author fijal
Recipients fijal
Date 2010-03-31.22:06:51
SpamBayes Score 0.0025085928
Marked as misclassified No
Message-id <1270073212.98.0.119754246418.issue8276@psf.upfronthosting.co.za>
In-reply-to
Content
In ceval.c there is such code:

PyObject *
PyEval_CallObject(PyObject *func, PyObject *arg)
{
	return PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL);
}
#define PyEval_CallObject(func,arg) \
        PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL)

Is this needed any longer? (both #define and function have the same name)
History
Date User Action Args
2010-03-31 22:06:53fijalsetrecipients: + fijal
2010-03-31 22:06:52fijalsetmessageid: <1270073212.98.0.119754246418.issue8276@psf.upfronthosting.co.za>
2010-03-31 22:06:51fijallinkissue8276 messages
2010-03-31 22:06:51fijalcreate