diff options
author | Victor Stinner <vstinner@python.org> | 2020-01-30 14:47:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-30 14:47:53 (GMT) |
commit | c232c9110cfefa0935cbf158e35e91746a8a9361 (patch) | |
tree | d341af64e2e5ac1a9b6f8f119bd3b8e91a325e90 /Misc | |
parent | 8d49f7ceb4f961770ae61fe6a4033c4e61cc3288 (diff) | |
download | cpython-c232c9110cfefa0935cbf158e35e91746a8a9361.zip cpython-c232c9110cfefa0935cbf158e35e91746a8a9361.tar.gz cpython-c232c9110cfefa0935cbf158e35e91746a8a9361.tar.bz2 |
bpo-39502: Skip test_zipfile.test_add_file_after_2107() on AIX (GH-18282)
Skip test_zipfile.test_add_file_after_2107() if time.localtime()
fails with OverflowError. It is the case on AIX 6.1 for example.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2020-01-30-15-04-54.bpo-39502.chbpII.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2020-01-30-15-04-54.bpo-39502.chbpII.rst b/Misc/NEWS.d/next/Tests/2020-01-30-15-04-54.bpo-39502.chbpII.rst new file mode 100644 index 0000000..0a13746 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2020-01-30-15-04-54.bpo-39502.chbpII.rst @@ -0,0 +1,2 @@ +Skip test_zipfile.test_add_file_after_2107() if :func:`time.localtime` fails +with :exc:`OverflowError`. It is the case on AIX 6.1 for example. |