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 tkrasnukha
Recipients serhiy.storchaka, tkrasnukha
Date 2018-08-29.19:40:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1535571617.89.0.56676864532.issue34495@psf.upfronthosting.co.za>
In-reply-to
Content
So, user has to do

	PyObject *empty_args = PyTuple_New(0);
	inst = PyBaseObject_Type.tp_new(type_obj, empty_args, Py_None);
	Py_DECREF(empty_args);


when type_obj doesn't require arguments for constructing?
History
Date User Action Args
2018-08-29 19:40:17tkrasnukhasetrecipients: + tkrasnukha, serhiy.storchaka
2018-08-29 19:40:17tkrasnukhasetmessageid: <1535571617.89.0.56676864532.issue34495@psf.upfronthosting.co.za>
2018-08-29 19:40:17tkrasnukhalinkissue34495 messages
2018-08-29 19:40:17tkrasnukhacreate