It's probably something small.   A bb issue would be targeted at 1.0.x if
you want to put one up

On Friday, June 10, 2016, Adrian <[email protected]> wrote:

> Unless there'll be a release fixing this soon-ish: Is there any workaround
> that doesn't require patching the sqlalchemy to avoid the issue?
> Otherwise I'd probably go for a hack like this:
>
> @contextmanager
> def dirty_hack():
>     orig = sqlalchemy.orm.properties._orm_full_deannotate
>     sqlalchemy.orm.properties._orm_full_deannotate = lambda x: x
>     try:
>         yield
>     finally:
>         sqlalchemy.orm.properties._orm_full_deannotate = orig
>
> and then wrap the creation of the column property in this contextmanager.
> But I don't know whether skipping the deannotate step might cause other
> issues...
>
> --
> You received this message because you are subscribed to the Google Groups
> "sqlalchemy" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected]
> <javascript:_e(%7B%7D,'cvml','sqlalchemy%[email protected]');>
> .
> To post to this group, send email to [email protected]
> <javascript:_e(%7B%7D,'cvml','[email protected]');>.
> Visit this group at https://groups.google.com/group/sqlalchemy.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

Reply via email to