You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.
That's a good question, but you'll have to ask the CPython folks. The dump() function in ast27 and ast35 is exactly the same as the version in the CPython ast library. (See here.) typed_ast is intended to behave as similarly as possible to ast (aside from type comment-related changes), so I don't want to change this behavior, even though I agree it's a little strange.
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.
Pass
to 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
The text was updated successfully, but these errors were encountered: