Version
LibCST 1.8.6 on Python 3.12
Reproducer:
import libcst as cst
src = "try: pass\nexcept A :\n pass\n"
out = cst.parse_module(src).code
print(repr(out))
assert out == src
Actual Output
'try: pass\nexcept A:\n pass\n'
Expected Output
'try: pass\nexcept A :\n pass\n'
The issue also reproduces with the following input:
try: pass
except* A :
pass
But this form appears to preserve correctly:
try: pass
except A as e :
pass
Version
LibCST 1.8.6 on Python 3.12
Reproducer:
Actual Output
'try: pass\nexcept A:\n pass\n'Expected Output
'try: pass\nexcept A :\n pass\n'The issue also reproduces with the following input:
But this form appears to preserve correctly: