astnorm
astnorm copied to clipboard
Split assignments / defs
Where possible, split single-value context assignments.
- var x, y = 1, 2
+ var x = 1
+ var y = 2
This makes handling assignments a little bit easier.