Collin Winter | 276887b | 2007-03-12 16:11:39 +0000 | [diff] [blame] | 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 | |
Senthil Kumaran | 3ddc435 | 2010-01-08 18:41:40 +0000 | [diff] [blame^] | 6 | import imp |
Collin Winter | 276887b | 2007-03-12 16:11:39 +0000 | [diff] [blame] | 7 | import infinite_reload |
Senthil Kumaran | 3ddc435 | 2010-01-08 18:41:40 +0000 | [diff] [blame^] | 8 | imp.reload(infinite_reload) |