mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
Previously, it used an odd convention with lowercased names of test data files (with nothing separating individual words), which made adding new tests quite tedious. Also, I removed the test data "exit.py" as it wasn't used by any test. GitOrigin-RevId: 92b1963c67ed01977f5b7ad020984056c9fe045d
9 lines
155 B
Python
9 lines
155 B
Python
while undefined1 and (r := undefined2()):
|
|
print(r)
|
|
else:
|
|
print("ok")
|
|
|
|
while undefined3 or (r2 := undefined4()):
|
|
print(r2)
|
|
else:
|
|
print("ok") |