changeset: 100578:915f158633f4 branch: 3.5 parent: 100574:f874520fd6d8 user: Ned Deily date: Thu Mar 17 17:53:52 2016 -0400 files: Lib/test/test_import/__init__.py Misc/NEWS description: Issue #26583: Skip test_timestamp_overflow in test_import if bytecode files cannot be written. diff -r f874520fd6d8 -r 915f158633f4 Lib/test/test_import/__init__.py --- a/Lib/test/test_import/__init__.py Thu Mar 17 11:01:04 2016 -0400 +++ b/Lib/test/test_import/__init__.py Thu Mar 17 17:53:52 2016 -0400 @@ -278,6 +278,7 @@ """)) script_helper.assert_python_ok(testfn) + @skip_if_dont_write_bytecode def test_timestamp_overflow(self): # A modification timestamp larger than 2**32 should not be a problem # when importing a module (issue #11235). diff -r f874520fd6d8 -r 915f158633f4 Misc/NEWS --- a/Misc/NEWS Thu Mar 17 11:01:04 2016 -0400 +++ b/Misc/NEWS Thu Mar 17 17:53:52 2016 -0400 @@ -319,6 +319,9 @@ - Issue #25616: Tests for OrderedDict are extracted from test_collections into separate file test_ordered_dict. +- Issue #26583: Skip test_timestamp_overflow in test_import if bytecode + files cannot be written. + Build -----