Whitespace normalization.
Modified Files: Bindings.py configHandler.py configHelpSourceEdit.py
This commit is contained in:
parent
fd0b00e0a7
commit
e66675b85c
|
@ -75,7 +75,7 @@ menudefs = [
|
||||||
]),
|
]),
|
||||||
('help', [
|
('help', [
|
||||||
('_About IDLE', '<<about-idle>>'),
|
('_About IDLE', '<<about-idle>>'),
|
||||||
('IDLE _Readme', '<<view-readme>>'),
|
('IDLE _Readme', '<<view-readme>>'),
|
||||||
None,
|
None,
|
||||||
('_IDLE Help', '<<help>>'),
|
('_IDLE Help', '<<help>>'),
|
||||||
('Python _Docs', '<<python-docs>>'),
|
('Python _Docs', '<<python-docs>>'),
|
||||||
|
|
|
@ -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
|
the available configuration files and the design implemented to update user
|
||||||
configuration information. In particular, user configuration choices which
|
configuration information. In particular, user configuration choices which
|
||||||
duplicate the defaults will be removed from the user's configuration files,
|
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
|
The contents of the user files may be altered using the Options/Configure IDLE
|
||||||
menu to access the configuration GUI (configDialog.py), or manually.
|
menu to access the configuration GUI (configDialog.py), or manually.
|
||||||
|
@ -570,7 +570,7 @@ class IdleConf:
|
||||||
|
|
||||||
def GetExtraHelpSourceList(self,configSet):
|
def GetExtraHelpSourceList(self,configSet):
|
||||||
"""Fetch list of extra help sources from a given configSet.
|
"""Fetch list of extra help sources from a given configSet.
|
||||||
|
|
||||||
Valid configSets are 'user' or 'default'. Return a list of tuples of
|
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
|
the form (menu_item , path_to_help_file , option), or return the empty
|
||||||
list. 'option' is the sequence number of the help resource. 'option'
|
list. 'option' is the sequence number of the help resource. 'option'
|
||||||
|
|
|
@ -94,7 +94,7 @@ class GetHelpSourceDialog(Toplevel):
|
||||||
file = opendialog.show(initialdir=dir, initialfile=base)
|
file = opendialog.show(initialdir=dir, initialfile=base)
|
||||||
if file:
|
if file:
|
||||||
self.path.set(file)
|
self.path.set(file)
|
||||||
|
|
||||||
def MenuOk(self):
|
def MenuOk(self):
|
||||||
"Simple validity check for a sensible menu item name"
|
"Simple validity check for a sensible menu item name"
|
||||||
menuOk = True
|
menuOk = True
|
||||||
|
|
Loading…
Reference in New Issue