[Python-Dev] C api for built-in type set?

2005-07-25 Thread Edward C. Jones
Is there a C API for the built-in type set? if not, why not? ___ 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

Re: [Python-Dev] C api for built-in type set?

2005-07-25 Thread Barry Warsaw
On Mon, 2005-07-25 at 16:37, Edward C. Jones wrote: Is there a C API for the built-in type set? if not, why not? Sadly, no. Because no one's written it yet...? -Barry signature.asc Description: This is a digitally signed message part ___

Re: [Python-Dev] C api for built-in type set?

2005-07-25 Thread Raymond Hettinger
[Edward C. Jones] Is there a C API for the built-in type set? if not, why not? I decided not to expose the internals until the code was fully evolved. For Py2.5, the underlying implementation is shifting to use its own data structure instead of forwarding everything to dictionaries. That will