On Tue, Feb 18, 2014 at 11:57 AM, MRAB <python at mrabarnett.plus.com> wrote: > In that case, is: > > func(foo if condition else pass) > > allowed (being like "func(foo) if condition else func()")? > > And, in fact, is: > > func(pass) > > also allowed (meaning "func()")? Oh, and: func(pass, 2, 3) should be the same as func(2, 3) right? ChrisA