Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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