Hi Gary,

Gary Poster wrote:

What should I be using?

TreeSet.

Interesting, okay, so how should I work around this bogosity?
Is this a bug?

>>> from BTrees.OOBTree import OOTreeSet,OOSet
>>> for i in OOSet((1,2,3)): print i,
....
1 2 3
>>> for i in OOTreeSet((1,2,3)): print i,
....
1 2 3
>>>
>>> for i in reversed(OOSet((1,2,3))): print i,
....
3 2 1
>>> for i in reversed(OOTreeSet((1,2,3))): print i,
....
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
TypeError: argument to reversed() must be a sequence

cheers,

Chris

--
Simplistix - Content Management, Zope & Python Consulting
           - http://www.simplistix.co.uk
_______________________________________________
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - http://mail.zope.org/mailman/listinfo/zope-announce
http://mail.zope.org/mailman/listinfo/zope )

Reply via email to