Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

astor.to_source pretty_string #224

Open
carbonium14 opened this issue May 7, 2024 · 3 comments
Open

astor.to_source pretty_string #224

carbonium14 opened this issue May 7, 2024 · 3 comments

Comments

@carbonium14
Copy link

When I used astor.to_source, I found that during the conversion process, when a line of code is very long, it will automatically wrap.

# astor: 0.8.1
node = ast.parse('this_is_a_sentence_that_is_very_long=this_is_a_sentence_that_is_extremely_long')
code = astor.to_source(node=node)
print(code)
# the result is:
# this_is_a_sentence_that_is_very_long = (
#     this_is_a_sentence_that_is_extremely_long)

What I hope to get is this_is_a_sentence_that_is_very_long=this_is_a_sentence_that_is_extremely_long, that is, no matter how long a line of code is, it will be gathered into one line.I found that the pretty_string function can manually format the code, but I found that no matter how I set this function, I cannot achieve the expected output. How can I solve this problem?

@berkerpeksag
Copy link
Owner

Thank you for the report! Could you please try the following snippet?

>>> import ast, astor
>>> node = ast.parse('this_is_a_sentence_that_is_very_long=this_is_a_sentence_that_is_extremely_long')
>>> code = astor.to_source(node=node, pretty_source=lambda source: ''.join(source))
>>> print(code)
this_is_a_sentence_that_is_very_long = this_is_a_sentence_that_is_extremely_long

@carbonium14
Copy link
Author

Thank you for the report! Could you please try the following snippet?

>>> import ast, astor
>>> node = ast.parse('this_is_a_sentence_that_is_very_long=this_is_a_sentence_that_is_extremely_long')
>>> code = astor.to_source(node=node, pretty_source=lambda source: ''.join(source))
>>> print(code)
this_is_a_sentence_that_is_very_long = this_is_a_sentence_that_is_extremely_long

it works! thanks for your answer!

@berkerpeksag
Copy link
Owner

Awesome! I'd be happy to review a documentation PR that mentions how to disable PEP 8 styling.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants