On 14/11/2012 4:23pm, Serhiy Storchaka wrote: > PEP 8 recommends: > > a_dict = dict( > x=1, > y=2, > z=3, > ... > ) > > and > > a_dict = { > 'x': 1, > 'y': 2, > 'z': 3, > ... > } In which section? I can't see such a recommendation. -- Richard