mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +00:00
PEP 3131: support non-ASCII characters in auto-completion of identifiers.
This commit is contained in:
parent
97aa21b46a
commit
9f44a66abc
2 changed files with 2 additions and 2 deletions
|
@ -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] == '.':
|
||||
|
|
|
@ -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?
|
||||
=========================
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue