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 donmez
Recipients brett.cannon, donmez
Date 2009-05-07.19:05:17
SpamBayes Score 0.00023175582
Marked as misclassified No
Message-id <1241723119.78.0.226820242064.issue5442@psf.upfronthosting.co.za>
In-reply-to
Content
Tested with: ./python -m test.regrtest -v test_importlib


3 failures:

======================================================================
FAIL: test_case_insensitivity 
(importlib.test.extension.test_case_sensitivity.ExtensionModuleCaseSensi
tivityTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/cartman/Python-
3.1b1/Lib/importlib/test/extension/test_case_sensitivity.py", line 29, 
in test_case_insensitivity
    self.assert_(hasattr(loader, 'load_module'))
AssertionError: False is not True

======================================================================
FAIL: test_lacking_parent 
(importlib.test.source.test_abc_loader.PyPycLoaderTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/cartman/Python-
3.1b1/Lib/importlib/test/source/test_abc_loader.py", line 271, in 
test_lacking_parent
    self.verify_bytecode(mock, name)
  File "/Users/cartman/Python-3.1b1/Lib/importlib/test/source/util.py", 
line 18, in wrapper
    to_return = fxn(*args, **kwargs)
  File "/Users/cartman/Python-
3.1b1/Lib/importlib/test/source/test_abc_loader.py", line 253, in 
verify_bytecode
    self.assert_(name in mock.module_bytecode)
AssertionError: False is not True

======================================================================
FAIL: test_insensitive 
(importlib.test.source.test_case_sensitivity.CaseSensitivityTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Users/cartman/Python-
3.1b1/Lib/importlib/test/source/test_case_sensitivity.py", line 49, in 
test_insensitive
    self.assert_(hasattr(insensitive, 'load_module'))
AssertionError: False is not True

----------------------------------------------------------------------
Ran 166 tests in 0.133s

FAILED (failures=3)
History
Date User Action Args
2009-05-07 19:05:19donmezsetrecipients: + donmez, brett.cannon
2009-05-07 19:05:19donmezsetmessageid: <1241723119.78.0.226820242064.issue5442@psf.upfronthosting.co.za>
2009-05-07 19:05:18donmezlinkissue5442 messages
2009-05-07 19:05:17donmezcreate