Commit 87807a66 authored by Kurt B. Kaiser's avatar Kurt B. Kaiser

Merge Py Idle's Rev 1.5

Use string.ascii_letters instead of string.letters (SF bug #226706)
parent bd6be7ab
...@@ -13,7 +13,7 @@ class AutoExpand: ...@@ -13,7 +13,7 @@ class AutoExpand:
]), ]),
] ]
wordchars = string.letters + string.digits + "_" wordchars = string.ascii_letters + string.digits + "_"
def __init__(self, editwin): def __init__(self, editwin):
self.text = editwin.text self.text = editwin.text
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment