mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Merge Py Idle's Rev 1.5
Use string.ascii_letters instead of string.letters (SF bug #226706)
This commit is contained in:
parent
bd6be7aba5
commit
87807a66c4
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ class AutoExpand:
|
|||
]),
|
||||
]
|
||||
|
||||
wordchars = string.letters + string.digits + "_"
|
||||
wordchars = string.ascii_letters + string.digits + "_"
|
||||
|
||||
def __init__(self, editwin):
|
||||
self.text = editwin.text
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue