In `dump()` function, there's the following expression [in line 116](https://github.com/dropbox/typed_ast/blob/master/typed_ast/ast35.py#L116): rv += fields and ', ' or ' ' The space character literal at the end of the expression causes the dump of e.g. `Pass` to be: Pass( lineno=44, col_offset=4) Is there a point to this? Or, could it be that this space should be removed, so that the dump is: Pass(lineno=44, col_offset=4) ? I've done this in this commit, should I PR? https://github.com/mbdevpl/typed_ast/commit/589d064ff427b372c8550839719aa6fd21290e42
In
dump()function, there's the following expression in line 116:The space character literal at the end of the expression causes the dump of e.g.
Passto be:Is there a point to this? Or, could it be that this space should be removed, so that the dump is:
?
I've done this in this commit, should I PR? mbdevpl@589d064