[Python-checkins] release: .md5 files are not needed.

georg.brandl python-checkins at python.org
Sun Mar 9 09:47:16 CET 2014


http://hg.python.org/release/rev/adec99d760a3
changeset:   82:adec99d760a3
user:        Georg Brandl <georg at python.org>
date:        Sun Mar 09 09:47:08 2014 +0100
summary:
  .md5 files are not needed.

files:
  release.py |  4 ----
  1 files changed, 0 insertions(+), 4 deletions(-)


diff --git a/release.py b/release.py
--- a/release.py
+++ b/release.py
@@ -232,10 +232,6 @@
         checksum_tgz.hexdigest(), int(os.path.getsize(tgz)), tgz))
     print('  %s  %8s  %s' % (
         checksum_xz.hexdigest(), int(os.path.getsize(xz)), xz))
-    with open(tgz + '.md5', 'w', encoding="ascii") as fp:
-        fp.write(checksum_tgz.hexdigest())
-    with open(xz + '.md5', 'w', encoding="ascii") as fp:
-        fp.write(checksum_xz.hexdigest())
 
     print('Signing tarballs')
     print('List of available private keys:')

-- 
Repository URL: http://hg.python.org/release


More information about the Python-checkins mailing list