comparison contrib/hgfixes/fix_bytesmod.py @ 19872:681f7b9213a4

check-code: check for spaces around = for named parameters
author Mads Kiilerich <madski@unity3d.com>
date Thu, 03 Oct 2013 14:50:47 +0200
parents e627fef94604
children 74daabdf5ab5
comparison
equal deleted inserted replaced
19871:6e74632170d3 19872:681f7b9213a4
56 args = [formatstr, Comma().clone()] + \ 56 args = [formatstr, Comma().clone()] + \
57 [c.clone() for c in data.children[:]] 57 [c.clone() for c in data.children[:]]
58 else: 58 else:
59 args = [formatstr, Comma().clone(), data] 59 args = [formatstr, Comma().clone(), data]
60 60
61 call = Call(Name('bytesformatter', prefix = ' '), args) 61 call = Call(Name('bytesformatter', prefix=' '), args)
62 return call 62 return call
63 63