[Python-checkins] r45904 - stackless/binaries-pc/python24.zip stackless/binaries-pc/python24.zip.md5.py

richard.tew python-checkins at python.org
Thu May 4 20:31:11 CEST 2006


Author: richard.tew
Date: Thu May  4 20:27:22 2006
New Revision: 45904

Added:
   stackless/binaries-pc/python24.zip   (contents, props changed)
   stackless/binaries-pc/python24.zip.md5.py
Log:
Zip archive based install of Python 2.4.3, includes all the bits and pieces needed to just extract over your Python installation directory.  e.g. I extracted it into my Python 2.4.3 installation in 'C:\Program Files\Python243'.

Added: stackless/binaries-pc/python24.zip
==============================================================================
Binary file. No diff available.

Added: stackless/binaries-pc/python24.zip.md5.py
==============================================================================
--- (empty file)
+++ stackless/binaries-pc/python24.zip.md5.py	Thu May  4 20:27:22 2006
@@ -0,0 +1,8 @@
+
+import md5
+expected = "a25a5cc5bd1bec37dda1a542e9a52cec"
+fname = r"python24.zip"
+print "expected digest", expected
+received = md5.md5(file(fname, "rb").read()).hexdigest()
+print ("matched", "NOT MATCHED!!") [received != expected]
+raw_input("press enter to continue")


More information about the Python-checkins mailing list