Whitespace normalization.
authorKurt B. Kaiser <kbk@shore.net>
Mon, 27 Jan 2003 02:36:18 +0000 (02:36 +0000)
committerKurt B. Kaiser <kbk@shore.net>
Mon, 27 Jan 2003 02:36:18 +0000 (02:36 +0000)
Modified Files:
  Bindings.py configHandler.py configHelpSourceEdit.py

Lib/idlelib/Bindings.py
Lib/idlelib/configHandler.py
Lib/idlelib/configHelpSourceEdit.py

index 16113abfbf50124036f37963bb2a0ab8725e7640..2e88c91dd8206a1648ffdc7728b3815efef2ee60 100644 (file)
@@ -75,7 +75,7 @@ menudefs = [
    ]),
  ('help', [
    ('_About IDLE', '<<about-idle>>'),
-   ('IDLE _Readme', '<<view-readme>>'),   
+   ('IDLE _Readme', '<<view-readme>>'),
    None,
    ('_IDLE Help', '<<help>>'),
    ('Python _Docs', '<<python-docs>>'),
index dac9d107cae46282d096ed1c581b1213854b142b..fd9cbc4580ceb855288d39ee1cd2f3527b5b3816 100644 (file)
@@ -4,7 +4,7 @@ Refer to the comments at the beginning of config-main.def for a description of
 the available configuration files and the design implemented to update user
 configuration information.  In particular, user configuration choices which
 duplicate the defaults will be removed from the user's configuration files,
-and if a file becomes empty, it will be deleted.  
+and if a file becomes empty, it will be deleted.
 
 The contents of the user files may be altered using the Options/Configure IDLE
 menu to access the configuration GUI (configDialog.py), or manually.
@@ -570,7 +570,7 @@ class IdleConf:
 
     def GetExtraHelpSourceList(self,configSet):
         """Fetch list of extra help sources from a given configSet.
-        
+
         Valid configSets are 'user' or 'default'.  Return a list of tuples of
         the form (menu_item , path_to_help_file , option), or return the empty
         list.  'option' is the sequence number of the help resource.  'option'
index 25569ca7836e229191ad575973f672f29d3dd500..b7818846b3d9d5fb6e63bf125802c1f77b79e97b 100644 (file)
@@ -94,7 +94,7 @@ class GetHelpSourceDialog(Toplevel):
         file = opendialog.show(initialdir=dir, initialfile=base)
         if file:
             self.path.set(file)
-        
+
     def MenuOk(self):
         "Simple validity check for a sensible menu item name"
         menuOk = True