Re: [sqlalchemy] MutableDict throwing AttributeError on declaraion

2015-06-03 Thread Mike Bayer
On 6/3/15 3:34 PM, SQLRook wrote: Consider the following class, with one MutableDict column (SQLA v1.0.4) Base = declarative_base() class Thing(Base): someDict = Column(MutableDict) This is immediately throwing an Attribute error: File "path\sqlalchemy\sql\schema.py", line 1174, in _

[sqlalchemy] MutableDict throwing AttributeError on declaraion

2015-06-03 Thread SQLRook
Consider the following class, with one MutableDict column (SQLA v1.0.4) Base = declarative_base() class Thing(Base): someDict = Column(MutableDict) This is immediately throwing an Attribute error: File "path\sqlalchemy\sql\schema.py", line 1174, in __init__ self._init_items(*args)