David Shin
Results
2
issues of
David Shin
The following code... ``` import redbaron rb = redbaron.RedBaron('func = print if True else print') print(rb.dumps()) ``` ...produces the following output: ``` func = printif True else print ``` Note...
The following code fails with a `ParsingError`: ``` from redbaron import RedBaron text = ''' if True: pass elif True: pass else: pass ''' RedBaron(text) ``` The python interpreter parses...