From 1873473e13161587b870adadc70c1d625f8bc5cf Mon Sep 17 00:00:00 2001 From: Thorsten Behrens Date: Thu, 23 Dec 2010 02:48:45 -0500 Subject: Removed erroneous print statement from setup.py - it had snuck in from the released 2.3 source --- setup.py | 1 - 1 file changed, 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 92593c8..936627b 100644 --- a/setup.py +++ b/setup.py @@ -158,7 +158,6 @@ class PCTBuildExt (build_ext): # Detect libgmp or libmpir and don't build _fastmath if both are missing. lib_dirs = self.compiler.library_dirs + ['/lib', '/usr/lib'] - print self.compiler.library_dirs if not (self.compiler.find_library_file(lib_dirs, 'gmp') or self.compiler.find_library_file(lib_dirs, 'mpir')): print >>sys.stderr, "warning: GMP or MPIR library not found; Not building Crypto.PublicKey._fastmath." self.__remove_extensions(["Crypto.PublicKey._fastmath"]) -- cgit v1.2.1