]> granicus.if.org Git - python/commitdiff
Close #12032: Fix scripts/crlf.py for Python 3
authorVictor Stinner <victor.stinner@haypocalc.com>
Sun, 8 May 2011 23:29:30 +0000 (01:29 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Sun, 8 May 2011 23:29:30 +0000 (01:29 +0200)
Tools/scripts/crlf.py

index 0622282f99979f322bdb3e58457628eb252d7f94..f231d292cebecdbda51f7e01b8c67beb15f0f4fa 100755 (executable)
@@ -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()