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 Rosuav
Recipients Rosuav
Date 2014-02-27.14:32:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1393511537.77.0.0251224920867.issue20796@psf.upfronthosting.co.za>
In-reply-to
Content
$ find . -name \*.pyc -delete
$ PYTHONDONTWRITEBYTECODE=1 make test

Three test failures, which all seem to be duplicates of:

======================================================================
FAIL: test_timestamp_overflow (test.test_importlib.source.test_file_loader.Source_SimpleTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/rosuav/cpython/Lib/test/test_importlib/source/test_file_loader.py", line 215, in test_timestamp_overflow
    self.assertTrue(os.path.exists(compiled))
AssertionError: False is not true

----------------------------------------------------------------------


It goes looking for the .pyc cached file, does not find it, and fails. Test should probably be skipped if bytecode isn't being written.
History
Date User Action Args
2014-02-27 14:32:17Rosuavsetrecipients: + Rosuav
2014-02-27 14:32:17Rosuavsetmessageid: <1393511537.77.0.0251224920867.issue20796@psf.upfronthosting.co.za>
2014-02-27 14:32:17Rosuavlinkissue20796 messages
2014-02-27 14:32:17Rosuavcreate