[Sqlalchemy-tickets] Issue #3443: Deprecated set() type in lib/sqlalchemy/sql/schema.py (zzzeek/sql
Brought to you by:
zzzeek
|
From: rokie <iss...@bi...> - 2015-06-09 18:35:20
|
New issue 3443: Deprecated set() type in lib/sqlalchemy/sql/schema.py https://bitbucket.org/zzzeek/sqlalchemy/issue/3443/deprecated-set-type-in-lib-sqlalchemy-sql rokie: While doing some work I stumbled upon some sets on an object. Further research led me to the source file: lib/sqlalchemy/sql/schema.py; line #454 specifically. At which point I hit gold. My plan was to re-cursing through the foreign keys in the Table object to auto-build an outputted serialized object (as there are some serious problems with Eve and MySQL, it has been sadly easier to re-invent some of the wheel :L). As the object is type `set`, that proves more difficult and as of Python 2.6 it's usage is deprecated (running on 2.7). |