mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +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
13 lines
197 B
Python
13 lines
197 B
Python
var = 1
|
|
if a == b:
|
|
var = 2
|
|
elif aa == bb:
|
|
bbb = same_changet_expression
|
|
|
|
if bbb:
|
|
var = 3 # <--- this highlight bug (unused variable)
|
|
|
|
else:
|
|
var = 4
|
|
|
|
return {'variable': var} |