
The previous run-twice logic only affected the stability checks but not the output. Now, we actually output the twice-formatted code.
18 lines
284 B
Python
18 lines
284 B
Python
if (e123456.get_tk_patchlevel() >= (8, 6, 0, 'final') or
|
|
(8, 5, 8) <= get_tk_patchlevel() < (8, 6)):
|
|
pass
|
|
|
|
# output
|
|
|
|
if (
|
|
e123456.get_tk_patchlevel() >= (8, 6, 0, "final")
|
|
or (
|
|
8,
|
|
5,
|
|
8,
|
|
)
|
|
<= get_tk_patchlevel()
|
|
< (8, 6)
|
|
):
|
|
pass
|