Message28483
| 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:59 | admin | link | issue1486663 messages |
| 2007年08月23日 14:39:59 | admin | create |
|