mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
PY-80564 Fp "Local variable might be referenced before assignment" when returning a comprehension in `try/except` PY-80733 Fp "Local variable might be referenced before assignment" for `try/except` with a `break` inside a loop Merge-request: IJ-MR-162320 Merged-by: Aleksandr Govenko <aleksandr.govenko@jetbrains.com> GitOrigin-RevId: f3e5d76e1fb15e2951d395fa27768269e4d0cb8f
5 lines
69 B
Python
5 lines
69 B
Python
if True:
|
|
while expr:
|
|
break
|
|
else:
|
|
print("unreachable") |