diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2012-06-03 12:32:42 +0200 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2012-06-03 12:32:42 +0200 |
commit | 9f44a66abc476a6aa57238c005253242b45f827e (patch) | |
tree | f576d85a6ab879df03f8d2ad8dff5097797f4264 /Lib/idlelib | |
parent | 97aa21b46a931cea07a37d8d8d3069bfd93a558f (diff) | |
download | cpython-git-9f44a66abc476a6aa57238c005253242b45f827e.tar.gz |
PEP 3131: support non-ASCII characters in auto-completion of identifiers.
Diffstat (limited to 'Lib/idlelib')
-rw-r--r-- | Lib/idlelib/AutoComplete.py | 2 | ||||
-rw-r--r-- | Lib/idlelib/NEWS.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/AutoComplete.py b/Lib/idlelib/AutoComplete.py index 1298d9f012..6b5391ba79 100644 --- a/Lib/idlelib/AutoComplete.py +++ b/Lib/idlelib/AutoComplete.py @@ -143,7 +143,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] == '.': diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 334b0c2d97..de9f55d2f7 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -2,7 +2,7 @@ What's New in IDLE 3.2.4? ========================= - Issue #14937: Perform auto-completion of filenames in strings even for - non-ASCII filenames. + non-ASCII filenames. Likewise for identifiers. What's New in IDLE 3.2.3? ========================= |