[Python-3000-checkins] r58016 - python/branches/py3k/setup.py

skip.montanaro python-3000-checkins at python.org
Thu Sep 6 18:30:31 CEST 2007


Author: skip.montanaro
Date: Thu Sep  6 18:30:31 2007
New Revision: 58016

Modified:
   python/branches/py3k/setup.py
Log:
I think we can just dump the else clause, per the comment I just deleted.


Modified: python/branches/py3k/setup.py
==============================================================================
--- python/branches/py3k/setup.py	(original)
+++ python/branches/py3k/setup.py	Thu Sep  6 18:30:31 2007
@@ -617,9 +617,6 @@
             # OpenSSL doesn't do these until 0.9.8 so we'll bring our own hash
             exts.append( Extension('_sha256', ['sha256module.c']) )
             exts.append( Extension('_sha512', ['sha512module.c']) )
-        else:
-            # these aren't strictly missing since they are unneeded.
-            missing.extend(['_sha256', '_sha512'])
 
         # Modules that provide persistent dictionary-like semantics.  You will
         # probably want to arrange for at least one of them to be available on


More information about the Python-3000-checkins mailing list