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 georg.brandl
Recipients
Date 2007-01-10.21:30:45
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
I'll do that, only in set_init, you have 
if (!PyArg_UnpackTuple(args, self->ob_type->tp_name, 0, 1, &iterable))

Changing this to use PyArg_ParseTupleAndKeywords would require a format string of
"|O:" + self->ob_type->tp_name

Is it worth constructing that string each time set_init() is called or should it just be "|O:set" for
sets and frozensets?
History
Date User Action Args
2007-08-23 14:39:59adminlinkissue1486663 messages
2007-08-23 14:39:59admincreate