mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
PY-80493 Inconsistent return inspection adding "return None" after every line in context manager
Merge-request: IJ-MR-160763 Merged-by: Aleksandr Govenko <aleksandr.govenko@jetbrains.com> GitOrigin-RevId: b576e30d433d39e426c8854d3ad485594ac9e958
This commit is contained in:
committed by
intellij-monorepo-bot
parent
c708c87c1f
commit
089e124ea1
@@ -1,5 +0,0 @@
|
||||
def f(x) -> <warning descr="Function returning 'int | None' has implicit return">int | None<caret></warning>:
|
||||
if x == 1:
|
||||
return 42
|
||||
elif x == 2:
|
||||
<warning descr="Function returning 'int | None' has implicit return">return</warning>
|
||||
-6
@@ -1,6 +0,0 @@
|
||||
def f(x) -> int | None:
|
||||
if x == 1:
|
||||
return 42
|
||||
elif x == 2:
|
||||
return None
|
||||
return None
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
class NotSuppressingContext:
|
||||
def __enter__(self):
|
||||
...
|
||||
def __exit__(self, exc_type, exc_val, exc_tb) -> bool | None:
|
||||
...
|
||||
|
||||
def foo():
|
||||
with NotSuppressingContext() as st:
|
||||
foo()
|
||||
<weak_warning descr="Explicit return statement expected">if bool():
|
||||
return 1<caret></weak_warning>
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
class NotSuppressingContext:
|
||||
def __enter__(self):
|
||||
...
|
||||
def __exit__(self, exc_type, exc_val, exc_tb) -> bool | None:
|
||||
...
|
||||
|
||||
def foo():
|
||||
with NotSuppressingContext() as st:
|
||||
foo()
|
||||
if bool():
|
||||
return 1
|
||||
return None
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
class SuppressingContext:
|
||||
def __enter__(self):
|
||||
...
|
||||
def __exit__(self, exc_type, exc_val, exc_tb) -> bool:
|
||||
...
|
||||
|
||||
def foo():
|
||||
<weak_warning descr="Explicit return statement expected">with SuppressingContext() as st:
|
||||
foo()
|
||||
return 1<caret></weak_warning>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
class SuppressingContext:
|
||||
def __enter__(self):
|
||||
...
|
||||
def __exit__(self, exc_type, exc_val, exc_tb) -> bool:
|
||||
...
|
||||
|
||||
def foo():
|
||||
with SuppressingContext() as st:
|
||||
foo()
|
||||
return 1
|
||||
return None
|
||||
Reference in New Issue
Block a user