Staging
v0.5.1
https://github.com/python/cpython
Revision b77bf326852f97f125ff57810a5f9663209414a7 authored by Benjamin Peterson on 01 March 2014, 15:31:36 UTC, committed by Benjamin Peterson on 01 March 2014, 15:31:36 UTC
1 parent 4f8e4c2
Raw File
Tip revision: b77bf326852f97f125ff57810a5f9663209414a7 authored by Benjamin Peterson on 01 March 2014, 15:31:36 UTC
fix test on debug builds (closes #20731)
Tip revision: b77bf32
warning_tests.py
# 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)
back to top