Kaydet (Commit) 6348f0ec authored tarafından Victor Stinner's avatar Victor Stinner

Close #12032: Fix scripts/crlf.py for Python 3

üst fa0e3d52
......@@ -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")
with open(filename, "wb") as f:
f.write(newdata)
f.close()
if __name__ == '__main__':
main()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment