Staging
v0.8.1
https://github.com/python/cpython
Revision 1e62aec3ed8c8c7b23ab56b46e250e9be2d40681 authored by Barry Warsaw on 12 September 2008, 23:25:57 UTC, committed by Barry Warsaw on 12 September 2008, 23:25:57 UTC
1 parent e6872eb
Raw File
Tip revision: 1e62aec3ed8c8c7b23ab56b46e250e9be2d40681 authored by Barry Warsaw on 12 September 2008, 23:25:57 UTC
Bumping to 2.6rc1
Tip revision: 1e62aec
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