]> git.proxmox.com Git - mirror_edk2.git/blob - AppPkg/Applications/Python/Python-2.7.2/Lib/test/infinite_reload.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / infinite_reload.py
1 # For testing http://python.org/sf/742342, which reports that Python
2 # segfaults (infinite recursion in C) in the presence of infinite
3 # reload()ing. This module is imported by test_import.py:test_infinite_reload
4 # to make sure this doesn't happen any more.
5
6 import imp
7 import infinite_reload
8 imp.reload(infinite_reload)