mirror of
https://github.com/python/cpython.git
synced 2025-07-23 19:25:40 +00:00

svn+ssh://pythondev@svn.python.org/python/trunk ........ r77942 | ezio.melotti | 2010-02-03 07:37:26 +0200 (Wed, 03 Feb 2010) | 1 line #7092: Silence more py3k warnings. Patch by Florent Xicluna. ........ r79023 | ezio.melotti | 2010-03-17 15:52:48 +0200 (Wed, 17 Mar 2010) | 1 line #7092: silence some more py3k warnings. ........
8 lines
324 B
Python
8 lines
324 B
Python
# 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 imp
|
|
import infinite_reload
|
|
imp.reload(infinite_reload)
|