On Wed, Apr 14, 2010 at 07:22:03PM -0700, Bill Campbell wrote:
> I'm in the reply munging harmful camp, and use mutt which makes
> it very simple with it's ``L'' to respond to the list.
>
> I have seen too many cases were somebody thought they were making
> a private reply to the sender that went
On Wed, Apr 14, 2010 at 11:46:29PM -0300, Juan Manuel Santos wrote:
> I have to admit that I was a bit annoyed that my zombie "reply to" on this
> mailing list always ended up in the last poster's mailbox. But after reading
> the article posted here about munging considered harmful, I'm definitel
hi everyone!
it´s been a while but i hope you will answer me.
in a script i have a sqlobject query like this:
r.BUCHUNGEN.filter((Gebucht.q.PERSONEN >= 4) & (Gebucht.q.OPTIONSDATUM is None))
this generates sql like this:
SELECT gebucht.NR, [...] FROM gebucht WHERE gebucht.REISENR) =
('10CAL
On Thu, Apr 15, 2010 at 03:56:08PM +0200, Frank Wagner wrote:
> (Gebucht.q.OPTIONSDATUM is None)
(Gebucht.q.OPTIONSDATUM == None)
Python allow to override == operator (__eq__ magic method) but not 'is'.
Hence SQLObject can do symbolic manipulation with '== None' but cannot
catch 'is None' -
quick and precise as always :)
thanks a lot oleg!
Am 15.04.2010 um 16:20 schrieb Oleg Broytman:
> On Thu, Apr 15, 2010 at 03:56:08PM +0200, Frank Wagner wrote:
>> (Gebucht.q.OPTIONSDATUM is None)
>
> (Gebucht.q.OPTIONSDATUM == None)
>
> Python allow to override == operator (__eq__ magi