mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 20:41:22 +07:00
10 lines
162 B
Python
10 lines
162 B
Python
# PY-16397
|
|
x, y = 2, 3
|
|
if x > 0 and y < 0:
|
|
pass
|
|
|
|
|
|
# PY-19998
|
|
<weak_warning descr="Simplify chained comparison">x > 1 and x < 2</weak_warning>
|
|
1 < x and 1 > y
|