views:

19

answers:

1

I want to override __cmp__, __eq__, and __hash__ so I can do set operations on a SQLAlchemy Declarative Base model. Will this cause any conflicts with the Declarative Base Implementation?

A: 

no. It'll work just fine.

nosklo
Thanks a lot :)
mauzepeda