[Python-checkins] r46020 - in python/trunk: Lib/plat-mac/bundlebuilder.py Mac/OSX/IDLE/idlemain.py

tim.peters python-checkins at python.org
Wed May 17 01:22:20 CEST 2006


Author: tim.peters
Date: Wed May 17 01:22:20 2006
New Revision: 46020

Modified:
   python/trunk/Lib/plat-mac/bundlebuilder.py
   python/trunk/Mac/OSX/IDLE/idlemain.py
Log:
Whitespace normalization.


Modified: python/trunk/Lib/plat-mac/bundlebuilder.py
==============================================================================
--- python/trunk/Lib/plat-mac/bundlebuilder.py	(original)
+++ python/trunk/Lib/plat-mac/bundlebuilder.py	Wed May 17 01:22:20 2006
@@ -150,7 +150,7 @@
         bp = self.bundlepath
 
         # Create the app bundle in a temporary location and then
-        # rename the completed bundle. This way the Finder will 
+        # rename the completed bundle. This way the Finder will
         # never see an incomplete bundle (where it might pick up
         # and cache the wrong meta data)
         self.bundlepath = bp + '~'

Modified: python/trunk/Mac/OSX/IDLE/idlemain.py
==============================================================================
--- python/trunk/Mac/OSX/IDLE/idlemain.py	(original)
+++ python/trunk/Mac/OSX/IDLE/idlemain.py	Wed May 17 01:22:20 2006
@@ -2,7 +2,7 @@
 from idlelib.PyShell import main
 import sys, os
 
-# Make sure sys.executable points to the python interpreter inside the 
+# Make sure sys.executable points to the python interpreter inside the
 # framework, instead of at the helper executable inside the application
 # bundle (the latter works, but doesn't allow access to the window server)
 sys.executable = os.path.join(sys.prefix, 'bin', 'python')
@@ -16,4 +16,4 @@
 
 argvemulator.ArgvCollector().mainloop()
 if __name__ == '__main__':
-        main()
+    main()


More information about the Python-checkins mailing list