[Sqlalchemy-tickets] Issue #3704: Example dictlike-polymorphic not working (zzzeek/sqlalchemy)
Brought to you by:
zzzeek
From: delijati <iss...@bi...> - 2016-05-04 10:29:47
|
New issue 3704: Example dictlike-polymorphic not working https://bitbucket.org/zzzeek/sqlalchemy/issues/3704/example-dictlike-polymorphic-not-working delijati: There are error. First is easy to fix: ``` #!python ... class Animal(ProxiedDictMixin, Base) # corrected version ... ``` The second one throws: ``` #!python Animal.value))))... NotImpementedError: <__main__.value object at ...> ``` |