diff options
author | Bernhard M. Wiedemann <githubbmw@lsmod.de> | 2018-01-31 10:17:10 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2018-01-31 10:17:10 (GMT) |
commit | 84521047e413d7d1150aaa1c333580b683b3f4b1 (patch) | |
tree | 1aae1c2f5a8b27562c9ea1fa153769066b1be5af /Misc/NEWS.d/next/Library/2017-11-27-15-09-49.bpo-30693.yC4mJ8.rst | |
parent | 8d83e4ba7823827bcbc119db887004d5c3a63dc6 (diff) | |
download | cpython-84521047e413d7d1150aaa1c333580b683b3f4b1.zip cpython-84521047e413d7d1150aaa1c333580b683b3f4b1.tar.gz cpython-84521047e413d7d1150aaa1c333580b683b3f4b1.tar.bz2 |
bpo-30693: zip+tarfile: sort directory listing (#2263)
tarfile and zipfile now sort directory listing to generate tar and zip archives
in a more reproducible way.
See also https://reproducible-builds.org/docs/stable-inputs/ on that topic.
Diffstat (limited to 'Misc/NEWS.d/next/Library/2017-11-27-15-09-49.bpo-30693.yC4mJ8.rst')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-11-27-15-09-49.bpo-30693.yC4mJ8.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-27-15-09-49.bpo-30693.yC4mJ8.rst b/Misc/NEWS.d/next/Library/2017-11-27-15-09-49.bpo-30693.yC4mJ8.rst new file mode 100644 index 0000000..a622e7e --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-11-27-15-09-49.bpo-30693.yC4mJ8.rst @@ -0,0 +1 @@ +The TarFile class now recurses directories in a reproducible way. |