]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
I think we can just dump the else clause, per the comment I just deleted.
authorSkip Montanaro <skip@pobox.com>
Thu, 6 Sep 2007 16:30:31 +0000 (16:30 +0000)
committerSkip Montanaro <skip@pobox.com>
Thu, 6 Sep 2007 16:30:31 +0000 (16:30 +0000)
setup.py

index 6af41c2ea93e6d8c969759dd8f4019ac38fad910..a0a02cbe3d6e89ef2a6ed1760b0f6ee81e1a08e5 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -617,9 +617,6 @@ class PyBuildExt(build_ext):
             # 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