Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 906e26e897b4b2e4b938c65fc4cf9d3b13fa069d authored by Martin v. Löwis on 14 January 2010, 17:41:58 UTC
Prepare for 2.5.5c1.
Tip revision: 906e26e
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 infinite_reload
reload(infinite_reload)
back to top