Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyUnreachableCodeInspection
/
WithSuppressedExceptions.py
blob: d0e49836e683aa2ac021bec64bd19923ae409f0c [
file
] [
log
] [
blame
]
class
C
(
object
):
def
__enter__
(
self
):
return
self
def
__exit__
(
self
,
exc
,
value
,
traceback
):
return
True
def
f
():
with
C
():
raise
Exception
()
x
=
1
#pass