summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMarcel Plch <gmarcel.plch@gmail.com>2018-08-02 13:04:52 (GMT)
committerVictor Stinner <vstinner@redhat.com>2018-08-02 13:04:52 (GMT)
commita2fe1e52eb94c41d9ebce1ab284180d7b1faa2a4 (patch)
tree252fe3c3a784a8c4e68873be4743ba703b551653 /Misc
parentfc512e3e0663f7f325862fcd42aef765fd34a453 (diff)
downloadcpython-a2fe1e52eb94c41d9ebce1ab284180d7b1faa2a4.zip
cpython-a2fe1e52eb94c41d9ebce1ab284180d7b1faa2a4.tar.gz
cpython-a2fe1e52eb94c41d9ebce1ab284180d7b1faa2a4.tar.bz2
bpo-34097: Add support for zipping files older than 1980-01-01 (GH-8270)
ZipFile can zip files older than 1980-01-01 and newer than 2107-12-31 using a new strict_timestamps parameter at the cost of setting the timestamp to the limit.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-07-13-13-42-10.bpo-34097.F5Dk5o.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-07-13-13-42-10.bpo-34097.F5Dk5o.rst b/Misc/NEWS.d/next/Library/2018-07-13-13-42-10.bpo-34097.F5Dk5o.rst
new file mode 100644
index 0000000..3971495
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-07-13-13-42-10.bpo-34097.F5Dk5o.rst
@@ -0,0 +1,3 @@
+ZipFile can zip files older than 1980-01-01 and newer than 2107-12-31 using
+a new ``strict_timestamps`` parameter at the cost of setting the timestamp
+to the limit.