[Python-checkins] r41928 - sandbox/trunk/setuptools/setuptools/command/build_ext.py

phillip.eby python-checkins at python.org
Fri Jan 6 00:30:43 CET 2006


Author: phillip.eby
Date: Fri Jan  6 00:30:42 2006
New Revision: 41928

Modified:
   sandbox/trunk/setuptools/setuptools/command/build_ext.py
Log:
Remove debug print left in by mistake.


Modified: sandbox/trunk/setuptools/setuptools/command/build_ext.py
==============================================================================
--- sandbox/trunk/setuptools/setuptools/command/build_ext.py	(original)
+++ sandbox/trunk/setuptools/setuptools/command/build_ext.py	Fri Jan  6 00:30:42 2006
@@ -52,9 +52,7 @@
         for ext in self.shlibs:
             if self.get_ext_fullname(ext.name)==fullname:
                 fn, ext = os.path.splitext(filename)
-                fn = self.shlib_compiler.library_filename(fn,'shared')
-                print "shlib",fn
-                return fn
+                return self.shlib_compiler.library_filename(fn,'shared')
         return filename
 
     def initialize_options(self):
@@ -80,6 +78,8 @@
             self.compiler = _compiler
 
 
+
+
     def setup_shlib_compiler(self):
         compiler = self.shlib_compiler = new_compiler(
             compiler=self.compiler, dry_run=self.dry_run, force=self.force


More information about the Python-checkins mailing list