Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e66675b8
Commit
e66675b8
authored
Jan 27, 2003
by
Kurt B. Kaiser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whitespace normalization.
Modified Files: Bindings.py configHandler.py configHelpSourceEdit.py
parent
fd0b00e0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
Lib/idlelib/Bindings.py
Lib/idlelib/Bindings.py
+1
-1
Lib/idlelib/configHandler.py
Lib/idlelib/configHandler.py
+2
-2
Lib/idlelib/configHelpSourceEdit.py
Lib/idlelib/configHelpSourceEdit.py
+1
-1
No files found.
Lib/idlelib/Bindings.py
View file @
e66675b8
...
...
@@ -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>>'
),
...
...
Lib/idlelib/configHandler.py
View file @
e66675b8
...
...
@@ -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'
...
...
Lib/idlelib/configHelpSourceEdit.py
View file @
e66675b8
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment