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
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.1node=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?
The text was updated successfully, but these errors were encountered:
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.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 thepretty_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?The text was updated successfully, but these errors were encountered: