From 87807a66c4c911a58098dae037c176204f33b6d6 Mon Sep 17 00:00:00 2001 From: "Kurt B. Kaiser" Date: Sun, 15 Sep 2002 20:50:02 +0000 Subject: [PATCH] Merge Py Idle's Rev 1.5 Use string.ascii_letters instead of string.letters (SF bug #226706) --- Lib/idlelib/AutoExpand.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/AutoExpand.py b/Lib/idlelib/AutoExpand.py index c50e52a14f..88018305fc 100644 --- a/Lib/idlelib/AutoExpand.py +++ b/Lib/idlelib/AutoExpand.py @@ -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 -- 2.40.0