diff options
author | Ned Deily <nad@python.org> | 2016-03-17 21:53:52 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2016-03-17 21:53:52 (GMT) |
commit | 1c80b152bd7a793b40a729bddf19c10660b06202 (patch) | |
tree | fd5bdf8987e2c3711f5e533943d4a17bd84b4d09 /Lib | |
parent | c488bc6a76b99f579039edaa52aeb26e54f96d3b (diff) | |
download | cpython-1c80b152bd7a793b40a729bddf19c10660b06202.zip cpython-1c80b152bd7a793b40a729bddf19c10660b06202.tar.gz cpython-1c80b152bd7a793b40a729bddf19c10660b06202.tar.bz2 |
Issue #26583: Skip test_timestamp_overflow in test_import if bytecode
files cannot be written.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_import/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_import/__init__.py b/Lib/test/test_import/__init__.py index 14a688d..1e33274 100644 --- a/Lib/test/test_import/__init__.py +++ b/Lib/test/test_import/__init__.py @@ -278,6 +278,7 @@ class ImportTests(unittest.TestCase): """)) 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). |