From 79e75e1916c33ee8e3de4c1b6c38221f2dba315c Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 20 Jul 2001 19:05:50 +0000 Subject: Use string.ascii_letters instead of string.letters (SF bug #226706). --- Lib/lib-old/codehack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/lib-old/codehack.py') diff --git a/Lib/lib-old/codehack.py b/Lib/lib-old/codehack.py index 52ac6be2d9..248205bffa 100644 --- a/Lib/lib-old/codehack.py +++ b/Lib/lib-old/codehack.py @@ -31,7 +31,7 @@ import linecache # Because this is a pretty expensive hack, a cache is kept. SET_LINENO = 127 # The opcode (see "opcode.h" in the Python source) -identchars = string.letters + string.digits + '_' # Identifier characters +identchars = string.ascii_letters + string.digits + '_' # Identifier characters _namecache = {} # The cache -- cgit v1.2.1