From 6348f0ecddaca5ed06df4f80313c31c8db597b27 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 9 May 2011 01:29:30 +0200 Subject: [PATCH] Close #12032: Fix scripts/crlf.py for Python 3 --- Tools/scripts/crlf.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Tools/scripts/crlf.py b/Tools/scripts/crlf.py index 0622282f9997..f231d292cebe 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() -- 2.47.3