summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-12-05 15:21:11 -0500
committerNed Batchelder <ned@nedbatchelder.com>2009-12-05 15:21:11 -0500
commit520fb387545e3d7d0af8cd24e89cc71470a9574f (patch)
tree9e4f52e06d82a36bcf4ffa45fe891366b7d596dd
parentf9985b30701a53995202c3ea82fac66205026a3a (diff)
downloadpython-coveragepy-520fb387545e3d7d0af8cd24e89cc71470a9574f.tar.gz
More checking in checkeol.py
-rw-r--r--checkeol.py31
1 files changed, 21 insertions, 10 deletions
diff --git a/checkeol.py b/checkeol.py
index 68efc2f..1bb02d6 100644
--- a/checkeol.py
+++ b/checkeol.py
@@ -1,24 +1,35 @@
-# Check files for incorrect newlines
+# Check files for incorrect newlines and trailing whitespace.
import fnmatch, os
-def check_file(fname):
+def check_file(fname, crlf=True, trail_white=True):
for n, line in enumerate(open(fname, "rb")):
- if "\r" in line:
- print "%s@%d: CR found" % (fname, n)
- return
+ if crlf:
+ if "\r" in line:
+ print "%s@%d: CR found" % (fname, n+1)
+ return
+ if trail_white:
+ line = line[:-1]
+ if line.rstrip() != line:
+ print "%s@%d: trailing whitespace found" % (fname, n+1)
+ return
-def check_files(root, patterns):
+
+def check_files(root, patterns, **kwargs):
for root, dirs, files in os.walk(root):
for f in files:
fname = os.path.join(root, f)
for p in patterns:
if fnmatch.fnmatch(fname, p):
- check_file(fname)
+ check_file(fname, **kwargs)
break
- if '.svn' in dirs:
- dirs.remove('.svn')
+ for pattern in ['.svn', '.hg']:
+ if pattern in dirs:
+ dirs.remove(pattern)
+
check_files("coverage", ["*.py"])
-check_files("test", ["*.py", "*,cover"])
+check_files("test", ["*.py"])
+check_files("test", ["*,cover"], trail_white=False)
check_file("setup.py")
+check_files(".", ["*.txt"])