Bill Janssen schrieb:
> I'm looking at building a "frozenset" instance as a return value from
> a C function, and the C API seems ridiculously clumsy.  Maybe I'm
> misunderstanding it.  Apparently, I need to create a list object, then
> pass that to PyFrozenSet_New(), then decref the list object.
> 
> Is that correct?

Almost. It doesn't have to be a list - any iterable object would do.

Regards,
Martin
_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to