src/ldt/setup.py
changeset 632 e85856bfd59b
parent 629 04c71ec19b80
child 1012 09d29a596d49
--- a/src/ldt/setup.py	Thu May 10 09:51:59 2012 +0200
+++ b/src/ldt/setup.py	Thu May 10 12:14:34 2012 +0200
@@ -4,7 +4,6 @@
 from distutils.command.install import INSTALL_SCHEMES
 import sys
 
-print("hello 1")
 
 class osx_install_data(install_data):
     # On MacOS, the platform-specific lib dir is /System/Library/Framework/Python/.../
@@ -18,7 +17,6 @@
         # install_data class uses ('install_data', 'install_dir') instead.
         self.set_undefined_options('install', ('install_lib', 'install_dir'))
         install_data.finalize_options(self)
-print("hello 2")
 
 def fullsplit(path, result=None):
     """
@@ -34,7 +32,7 @@
         return result
     return fullsplit(head, [tail] + result)
 
-print("hello 3")
+
 def launch_setup(script_name, script_args):
     if sys.platform == "darwin": 
         cmdclasses = {'install_data': osx_install_data} 
@@ -120,10 +118,8 @@
 
 
 if __name__ == "__main__":
-   
-    print("hello 4")    
+    
     script_name = os.path.basename(sys.argv[0])
     script_args = sys.argv[1:]
-    print("hello 5")
-    launch_setup(script_name, script_args)
-    print("hello 6")
\ No newline at end of file
+    
+    launch_setup(script_name, script_args)
\ No newline at end of file