Skip to content

Conversation

isidentical
Copy link
Member

@isidentical isidentical commented May 16, 2020

>>> ast.unparse(ast.parse("+value"))
'+ value'
>>> ast.unparse(ast.parse("+value / -EPSILON"))
'+ value / - EPSILON'

with this PR

>>> ast.unparse(ast.parse("+value"))
'+value'
>>> ast.unparse(ast.parse("+value / -EPSILON"))
'+value / -EPSILON'
>>> ast.unparse(ast.parse("option = not congig.option"))
'option = not congig.option'

https://bugs.python.org/issue38870

@pablogsal pablogsal merged commit ce4a753 into python:master May 16, 2020
arturoescaip pushed a commit to arturoescaip/cpython that referenced this pull request May 24, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants