summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLumír 'Frenzy' Balhar <lbalhar@redhat.com>2020-05-14 14:17:22 (GMT)
committerGitHub <noreply@github.com>2020-05-14 14:17:22 (GMT)
commite77d428856fbd339faee44ff47214eda5fb51d57 (patch)
treef6da10d4c4b9d438107f665760a0ba79810f4e49 /Misc
parent7443d42021d433da0497f8ba651daa47e7dc1991 (diff)
downloadcpython-e77d428856fbd339faee44ff47214eda5fb51d57.zip
cpython-e77d428856fbd339faee44ff47214eda5fb51d57.tar.gz
cpython-e77d428856fbd339faee44ff47214eda5fb51d57.tar.bz2
bpo-40495: compileall option to hardlink duplicate pyc files (GH-19901)
compileall is now able to use hardlinks to prevent duplicates in a case when .pyc files for different optimization levels have the same content. Co-authored-by: Miro Hrončok <miro@hroncok.cz> Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2020-05-04-11-20-49.bpo-40495.TyTc2O.rst2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index f744de6..b479aa5 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -86,6 +86,7 @@ Marcin Bachry
Alfonso Baciero
Dwayne Bailey
Stig Bakken
+Lumír Balhar
Aleksandr Balezin
Greg Ball
Lewis Ball
diff --git a/Misc/NEWS.d/next/Library/2020-05-04-11-20-49.bpo-40495.TyTc2O.rst b/Misc/NEWS.d/next/Library/2020-05-04-11-20-49.bpo-40495.TyTc2O.rst
new file mode 100644
index 0000000..d3049b0
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-05-04-11-20-49.bpo-40495.TyTc2O.rst
@@ -0,0 +1,2 @@
+:mod:`compileall` is now able to use hardlinks to prevent duplicates in a
+case when ``.pyc`` files for different optimization levels have the same content.