changeset: 100579:e8cab14d8a47 parent: 100575:89704c124fa8 parent: 100578:915f158633f4 user: Ned Deily date: Thu Mar 17 17:56:42 2016 -0400 files: Misc/NEWS description: Issue #26583: merge from 3.5 diff -r 89704c124fa8 -r e8cab14d8a47 Lib/test/test_import/__init__.py --- a/Lib/test/test_import/__init__.py Thu Mar 17 11:01:35 2016 -0400 +++ b/Lib/test/test_import/__init__.py Thu Mar 17 17:56:42 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 89704c124fa8 -r e8cab14d8a47 Misc/NEWS --- a/Misc/NEWS Thu Mar 17 11:01:35 2016 -0400 +++ b/Misc/NEWS Thu Mar 17 17:56:42 2016 -0400 @@ -846,6 +846,9 @@ - ``PCbuild\rt.bat`` now accepts an unlimited number of arguments to pass along to regrtest.py. Previously there was a limit of 9. +- Issue #26583: Skip test_timestamp_overflow in test_import if bytecode + files cannot be written. + Build -----