nannified.

This commit is contained in:
Guido van Rossum 1998-09-14 15:56:40 +00:00
parent 7944ea523e
commit 4e96ec6a4e
1 changed files with 8 additions and 8 deletions

View File

@ -5,15 +5,15 @@
import sys, regsub, os
for file in sys.argv[1:]:
if os.path.isdir(file):
print file, "Directory!"
continue
print file, "Directory!"
continue
data = open(file, "rb").read()
if '\0' in data:
print file, "Binary!"
continue
print file, "Binary!"
continue
newdata = regsub.gsub("\r?\n", "\r\n", data)
if newdata != data:
print file
f = open(file, "wb")
f.write(newdata)
f.close()
print file
f = open(file, "wb")
f.write(newdata)
f.close()