Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
247a9b87bd7ad5836b00e72212f9140f0faa5c9c
/
.
/
Lib
/
test
/
warning_tests.py
blob: d0519effdc8785c3386ea562fc700ad2b914e34c [
file
] [
log
] [
blame
]
# Helper module for testing the skipmodules argument of warnings.warn()
import
warnings
def
outer
(
message
,
stacklevel
=
1
):
inner
(
message
,
stacklevel
)
def
inner
(
message
,
stacklevel
=
1
):
warnings
.
warn
(
message
,
stacklevel
=
stacklevel
)