From: Victor Stinner Date: Sun, 8 May 2011 23:29:30 +0000 (+0200) Subject: Close #12032: Fix scripts/crlf.py for Python 3 X-Git-Tag: v3.3.0a1~2354 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6348f0ecddaca5ed06df4f80313c31c8db597b27;p=python Close #12032: Fix scripts/crlf.py for Python 3 --- diff --git a/Tools/scripts/crlf.py b/Tools/scripts/crlf.py index 0622282f99..f231d292ce 100755 --- a/Tools/scripts/crlf.py +++ b/Tools/scripts/crlf.py @@ -8,16 +8,16 @@ def main(): if os.path.isdir(filename): print(filename, "Directory!") continue - data = open(filename, "rb").read() - if '\0' in data: + with open(filename, "rb") as f: + data = f.read() + if b'\0' in data: print(filename, "Binary!") continue - newdata = data.replace("\r\n", "\n") + newdata = data.replace(b"\r\n", b"\n") if newdata != data: print(filename) - f = open(filename, "wb") - f.write(newdata) - f.close() + with open(filename, "wb") as f: + f.write(newdata) if __name__ == '__main__': main()