This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients barry, brett.cannon, ncoghlan, pitrou
Date 2010-05-15.21:43:49
SpamBayes Score 1.3271591e-05
Marked as misclassified No
Message-id <1273959831.66.0.0991832321433.issue8727@psf.upfronthosting.co.za>
In-reply-to
Content
This can be narrowed down to the following test sequence:

$ ./python -E -m test.regrtest test_heapq test_import
test_heapq
test_import
Warning -- sys.path was modified by test_import
test test_import failed -- Traceback (most recent call last):
  File "/home/antoine/py3k/__svn__/Lib/test/test_import.py", line 167, in test_module_with_large_stack
    exec('import ' + module)
  File "<string>", line 1, in <module>
  File "/home/antoine/py3k/__svn__/Lib/importlib/_bootstrap.py", line 151, in decorated
    return fxn(self, module)
  File "/home/antoine/py3k/__svn__/Lib/importlib/_bootstrap.py", line 320, in load_module
    code_object = self.get_code(module.__name__)
  File "/home/antoine/py3k/__svn__/Lib/importlib/_bootstrap.py", line 429, in get_code
    "object for {0!r}".format(fullname))
ImportError: no source or bytecode available to create code object for 'longlist'


test_heapq involves test.support.import_fresh_module().
History
Date User Action Args
2010-05-15 21:43:52pitrousetrecipients: + pitrou, barry, brett.cannon, ncoghlan
2010-05-15 21:43:51pitrousetmessageid: <1273959831.66.0.0991832321433.issue8727@psf.upfronthosting.co.za>
2010-05-15 21:43:49pitroulinkissue8727 messages
2010-05-15 21:43:49pitroucreate