blob: 841ccad0b98b8b15ee8643d36d281da1078ec3eb [file] [log] [blame]
Collin Winter276887b2007-03-12 16:11:39 +00001# 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
Ezio Melottidde5b942010-02-03 05:37:26 +00006import imp
Collin Winter276887b2007-03-12 16:11:39 +00007import infinite_reload
Ezio Melottidde5b942010-02-03 05:37:26 +00008imp.reload(infinite_reload)