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 taleinat
Recipients berker.peksag, bmispelon, serhiy.storchaka, taleinat
Date 2015-06-09.20:10:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1433880639.07.0.997068779431.issue24416@psf.upfronthosting.co.za>
In-reply-to
Content
You can take a look at lru_cache_cache_info in Modules/_functoolsmodule.c for an example of namedtuple instantiation in C code. But that code gets the namedtuple class as a parameter.

This is not my area of expertise, but you could try using PyObject_CallFunction to call the Python collections.namedtuple function, keep the result as a module attribute, and then call that whenever you want to create an instance.
History
Date User Action Args
2015-06-09 20:10:39taleinatsetrecipients: + taleinat, berker.peksag, serhiy.storchaka, bmispelon
2015-06-09 20:10:39taleinatsetmessageid: <1433880639.07.0.997068779431.issue24416@psf.upfronthosting.co.za>
2015-06-09 20:10:39taleinatlinkissue24416 messages
2015-06-09 20:10:38taleinatcreate