]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.2/Lib/test/warning_tests.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / warning_tests.py
CommitLineData
4710c53d 1# Helper module for testing the skipmodules argument of warnings.warn()\r
2\r
3import warnings\r
4\r
5def outer(message, stacklevel=1):\r
6 inner(message, stacklevel)\r
7\r
8def inner(message, stacklevel=1):\r
9 warnings.warn(message, stacklevel=stacklevel)\r