diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-25 17:01:45 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-25 17:01:45 (GMT) |
commit | 33d15f7c85c1700465bc89f896f2bafc58d2b2b5 (patch) | |
tree | a29254c1a65bebb15e0a7bc8d3c42794d25aa35a /Lib | |
parent | dd21f68963c2b17324b6018dbbf1b32b6e88f2c2 (diff) | |
download | cpython-33d15f7c85c1700465bc89f896f2bafc58d2b2b5.zip cpython-33d15f7c85c1700465bc89f896f2bafc58d2b2b5.tar.gz cpython-33d15f7c85c1700465bc89f896f2bafc58d2b2b5.tar.bz2 |
Port import fixes from 2.7.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/importlib/test/source/test_file_loader.py | 2 | ||||
-rw-r--r-- | Lib/test/test_import.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/importlib/test/source/test_file_loader.py b/Lib/importlib/test/source/test_file_loader.py index 912e6c3..c7a7d8f 100644 --- a/Lib/importlib/test/source/test_file_loader.py +++ b/Lib/importlib/test/source/test_file_loader.py @@ -138,7 +138,7 @@ class SimpleTest(unittest.TestCase): with open(source, 'w') as f: f.write("x = 5") try: - os.utime(source, (2 ** 33, 2 ** 33)) + os.utime(source, (2 ** 33 - 5, 2 ** 33 - 5)) except OverflowError: self.skipTest("cannot set modification time to large integer") except OSError as e: diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index 3110635..48443ea 100644 --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -321,7 +321,7 @@ class ImportTests(unittest.TestCase): with open(source, 'w') as f: pass try: - os.utime(source, (2 ** 33, 2 ** 33)) + os.utime(source, (2 ** 33 - 5, 2 ** 33 - 5)) except OverflowError: self.skipTest("cannot set modification time to large integer") except OSError as e: |