Re: [sqlalchemy] Feature request - sqlalchemy.sql.operators.ColumnOperators.not_in_

2012-09-29 Thread Jonathan Vanasco
thanks for the reply. if this ever happens, ., .8, .9, etc doesn't matter. would just be so useful. -- You received this message because you are subscribed to the Google Groups sqlalchemy group. To view this discussion on the web visit

[sqlalchemy] Feature request - sqlalchemy.sql.operators.ColumnOperators.not_in_

2012-09-28 Thread Jonathan Vanasco
I would really like to make a feature request for a `not_in_` operator for sqlalchemy.sql.operators.ColumnOperators there are at least 2 ways to make a valid query right now : filter( ~ table.column.in_( (1,2,) ) ) filter( sqlalchemy.not( table.column.in_( (1,2,) ) ) so there isn't any

Re: [sqlalchemy] Feature request - sqlalchemy.sql.operators.ColumnOperators.not_in_

2012-09-28 Thread Michael Bayer
On Sep 28, 2012, at 1:54 PM, Jonathan Vanasco wrote: I would really like to make a feature request for a `not_in_` operator for sqlalchemy.sql.operators.ColumnOperators there are at least 2 ways to make a valid query right now : filter( ~ table.column.in_( (1,2,) ) ) filter(