Add a test file that shows how Python diffing is currently broken

ida_star
Wilfred Hughes 2021-08-29 23:59:24 +07:00
parent d1354c7174
commit 974655aea8
2 changed files with 14 additions and 0 deletions

@ -0,0 +1,7 @@
x = True
y = True
if x:
foo()
if y:
bar()
baz()

@ -0,0 +1,7 @@
x = True
y = True
if x:
foo()
if y:
bar()
baz()