[sqlalchemy] Re: list comprehension and or_

2008-05-27 Thread az
On Tuesday 27 May 2008 23:37:20 mg wrote: i am trying to generate an or_ clauselist and was wondering if i could do so with a list comprehension, below is a small example of what i first tried: status = [1,2,3] or_([users.c.status_id == item for item in status]) any ideas or tips would be

[sqlalchemy] Re: list comprehension and or_

2008-05-27 Thread Shreya Bhatt
you could use the in_ for this without looping over the list eg:- or_(users.c.status_id.in_(status)) On Tue, May 27, 2008 at 4:30 PM, [EMAIL PROTECTED] wrote: On Tuesday 27 May 2008 23:37:20 mg wrote: i am trying to generate an or_ clauselist and was wondering if i could do so with a list