i've upgraded and found this:
...
 q = session.execute( sometable.select() )
 r = set( q )
TypeError: 'NoneType' object is not callable

it took me 10 mins of trials to guess ...
the RowProxy does not behave well for set() of it; this is ok
 r = set( tuple(x) for x in q ) 

i guess something about __len__ or __nonzero__ or __iter__ or ...
is it that new __hash__ = None ?

svil

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to