Without downloading and installing your code, can you tell me what the result of these comparisons would be?
col = Enum('red', 'green', 'blue')
day = Enum('mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun')
col.blue == "blue"
day.tue == 23
If they return False I would expect
col.blue == day.tue
to return False as well, not raise an exception.
Skip
--
http://mail.python.org/mailman/listinfo/python-list
