Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 33b2d786e704b1e929fef8aeab9ab840ce840a07 authored by Benjamin Peterson on 03 December 2016, 20:38:47 UTC
python 2.7.13rc1
Tip revision: 33b2d78
infinite_reload.py
# For testing http://python.org/sf/742342, which reports that Python
#  segfaults (infinite recursion in C) in the presence of infinite
#  reload()ing. This module is imported by test_import.py:test_infinite_reload
#  to make sure this doesn't happen any more.

import imp
import infinite_reload
imp.reload(infinite_reload)
back to top