From aaab30e00cc3e8d90c71b8657c284feeb4ac1413 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Walter=20D=C3=B6rwald?= Date: Wed, 11 Sep 2002 20:36:02 +0000 Subject: Apply diff2.txt from SF patch http://www.python.org/sf/572113 (with one small bugfix in bgen/bgen/scantools.py) This replaces string module functions with string methods for the stuff in the Tools directory. Several uses of string.letters etc. are still remaining. --- Tools/scripts/checkappend.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Tools/scripts/checkappend.py') diff --git a/Tools/scripts/checkappend.py b/Tools/scripts/checkappend.py index c1188e2417..b3141dfd10 100755 --- a/Tools/scripts/checkappend.py +++ b/Tools/scripts/checkappend.py @@ -35,14 +35,13 @@ __version__ = 1, 0, 0 import os import sys -import string import getopt import tokenize verbose = 0 def errprint(*args): - msg = string.join(args) + msg = ' '.join(args) sys.stderr.write(msg) sys.stderr.write("\n") -- cgit v1.2.1