On 29 April 2013 11:24, Helga Velroyen <hel...@google.com> wrote: >> def _BuildSpecDict(par, mn, st, mx): >> - return {par: {"min": mn, "std": st, "max": mx}} >> + return { >> + "min": {par: mn}, >> + "max": {par: mx}, >> + "std": {par: st}, >> + } >> > I'd prefer to take the time to use min, std, and max. I guess we can afford > that one additional character each :)
You mean as variable the names? The problem is that min and max are built-in functions. Or have I misunderstood? Bernardo