From: Guido van Rossum Date: Wed, 13 Nov 2002 21:04:31 +0000 (+0000) Subject: Tim wins a bet. Don't use re. X-Git-Tag: v2.3c1~3440 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=affa6b7bf16a998c0e15df60459776cf1c8339b0;p=thirdparty%2FPython%2Fcpython.git Tim wins a bet. Don't use re. --- diff --git a/Tools/scripts/crlf.py b/Tools/scripts/crlf.py index 58181854016b..59e3ff3fc326 100755 --- a/Tools/scripts/crlf.py +++ b/Tools/scripts/crlf.py @@ -2,7 +2,7 @@ "Replace CRLF with LF in argument files. Print names of changed files." -import sys, re, os +import sys, os for file in sys.argv[1:]: if os.path.isdir(file): print file, "Directory!" @@ -11,7 +11,7 @@ for file in sys.argv[1:]: if '\0' in data: print file, "Binary!" continue - newdata = re.sub("\r\n", "\n", data) + newdata = data.replace("\r\n", "\n") if newdata != data: print file f = open(file, "wb")