Change a variable type to avoid signed overflow; replace repeated '19999' constant...
[python.git] / Lib / test / infinite_reload.py
blobbfbec91b0a1c2df3fd0085c39a4f4ce2e17f23b5
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.
6 import infinite_reload
7 reload(infinite_reload)