On 1/9/07, Brett Cannon <[EMAIL PROTECTED]> wrote:
>
> * 'collections' package
>
>   + heapq
>   + Queue

Putting this in a collections package might exacerbate the confusion
over its intended use.  It really is more of a threading
synchronization tool than a general queue datastructure (though it is
certainly possible to use in that fashion).

Perhaps the module can be renamed to conform to pep 8.  threadqueue?
Or, move into the threading module?

>   + sets

Does the sets module serve any purpose other than backward
compatibility?  Why not remove those module for py3k?

Especially considering:
In [6]: isinstance(set(), sets.BaseSet)
Out[6]: False

regards,
-Mike
_______________________________________________
Python-3000 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe: 
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com

Reply via email to