[Python-checkins] r58022 - python/trunk/setup.py

skip.montanaro python-checkins at python.org
Fri Sep 7 00:29:07 CEST 2007


Author: skip.montanaro
Date: Fri Sep  7 00:29:06 2007
New Revision: 58022

Modified:
   python/trunk/setup.py
Log:
If this is correct for py3k branch and it's already in the release25-maint
branch, seems like it ought to be on the trunk as well.


Modified: python/trunk/setup.py
==============================================================================
--- python/trunk/setup.py	(original)
+++ python/trunk/setup.py	Fri Sep  7 00:29:06 2007
@@ -648,9 +648,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-checkins mailing list