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
e5702114
Commit
e5702114
authored
Dec 11, 2017
by
Terry Jan Reedy
Committed by
GitHub
Dec 11, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix idlelib comment typos reported by Mike on pull request 4803. (#4807)
parent
e5697535
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Lib/idlelib/autocomplete_w.py
Lib/idlelib/autocomplete_w.py
+1
-1
Lib/idlelib/idle_test/test_query.py
Lib/idlelib/idle_test/test_query.py
+1
-1
Lib/idlelib/idle_test/test_search.py
Lib/idlelib/idle_test/test_search.py
+1
-1
No files found.
Lib/idlelib/autocomplete_w.py
View file @
e5702114
...
...
@@ -246,7 +246,7 @@ class AutoCompleteWindow:
acw
.
wm_geometry
(
"+%d+%d"
%
(
new_x
,
new_y
))
if
platform
.
system
().
startswith
(
'Windows'
):
# See issue 15786. When on windows platform, Tk will misbeha
i
ve
# See issue 15786. When on windows platform, Tk will misbehave
# to call winconfig_event multiple times, we need to prevent this,
# otherwise mouse button double click will not be able to used.
acw
.
unbind
(
WINCONFIG_SEQUENCE
,
self
.
winconfigid
)
...
...
Lib/idlelib/idle_test/test_query.py
View file @
e5702114
...
...
@@ -162,7 +162,7 @@ class HelpsourceBrowsefileTest(unittest.TestCase):
# Path is widget entry, either '' or something.
# Func return is file dialog return, either '' or something.
# Func return should override widget entry.
# We need all 4 combination to test all (most) code paths.
# We need all 4 combination
s
to test all (most) code paths.
for
path
,
func
,
result
in
(
(
''
,
lambda
a
,
b
,
c
:
''
,
''
),
(
''
,
lambda
a
,
b
,
c
:
__file__
,
__file__
),
...
...
Lib/idlelib/idle_test/test_search.py
View file @
e5702114
"""Test SearchDialog class in idlelib.search.py"""
# Does not currently test the event handler wrappers.
# A usage test should simulate clicks and check hilighting.
# A usage test should simulate clicks and check hi
gh
lighting.
# Tests need to be coordinated with SearchDialogBase tests
# to avoid duplication.
...
...
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