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
f2094079
Commit
f2094079
authored
Jun 03, 2012
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Plain Diff
merge 3.2
parents
428d161b
9f44a66a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Lib/idlelib/AutoComplete.py
Lib/idlelib/AutoComplete.py
+1
-1
Lib/idlelib/AutoCompleteWindow.py
Lib/idlelib/AutoCompleteWindow.py
+1
-1
Lib/idlelib/NEWS.txt
Lib/idlelib/NEWS.txt
+1
-1
No files found.
Lib/idlelib/AutoComplete.py
View file @
f2094079
...
...
@@ -140,7 +140,7 @@ class AutoComplete:
elif
hp
.
is_in_code
()
and
(
not
mode
or
mode
==
COMPLETE_ATTRIBUTES
):
self
.
_remove_autocomplete_window
()
mode
=
COMPLETE_ATTRIBUTES
while
i
and
curline
[
i
-
1
]
in
ID_CHARS
:
while
i
and
curline
[
i
-
1
]
in
ID_CHARS
or
ord
(
curline
[
i
-
1
])
>
127
:
i
-=
1
comp_start
=
curline
[
i
:
j
]
if
i
and
curline
[
i
-
1
]
==
'.'
:
...
...
Lib/idlelib/AutoCompleteWindow.py
View file @
f2094079
...
...
@@ -354,7 +354,7 @@ class AutoCompleteWindow:
# A modifier key, so ignore
return
elif
event
.
char
:
elif
event
.
char
and
event
.
char
>=
' '
:
# Regular character with a non-length-1 keycode
self
.
_change_start
(
self
.
start
+
event
.
char
)
self
.
lasttypedstart
=
self
.
start
...
...
Lib/idlelib/NEWS.txt
View file @
f2094079
...
...
@@ -2,7 +2,7 @@ What's New in IDLE 3.3.0?
=========================
- Issue #14937: Perform auto-completion of filenames in strings even for
non-ASCII filenames.
non-ASCII filenames.
Likewise for identifiers.
- Issue #8515: Set __file__ when run file in IDLE.
Initial patch by Bruce Frederiksen.
...
...
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