home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 July / maximum-cd-2011-07.iso / DiscContents / LibO_3.3.2_Win_x86_install_multi.exe / libreoffice1.cab / infinite_reload.py < prev    next >
Encoding:
Text File  |  2011-03-15  |  309 b   |  8 lines

  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.  
  6. import infinite_reload
  7. reload(infinite_reload)
  8.