Re: [stdlib-sig] binary logical operators in operator module

2013-04-27 Thread R. David Murray
On Sat, 27 Apr 2013 15:23:40 -0700, Gary Miguel wrote: > Hi, > This is my first time writing to a python list, so sorry if this message is > misdirected. > Recently I wrote something like: > functools.reduce(lambda x, y: x and y, ...) > and I was wondering why there is no logical and in the operat

[stdlib-sig] binary logical operators in operator module

2013-04-27 Thread Gary Miguel
Hi, This is my first time writing to a python list, so sorry if this message is misdirected. Recently I wrote something like: functools.reduce(lambda x, y: x and y, ...) and I was wondering why there is no logical and in the operator module. (http://docs.python.org/3.3/library/operator.html) Is t