From d6b7c96c3eb29b9244ece0c046d3f372ff432d04 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Wed, 23 Jun 2010 21:03:09 -0700 Subject: Populate tree. --- src/etc/tidy.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/etc/tidy.py (limited to 'src/etc/tidy.py') diff --git a/src/etc/tidy.py b/src/etc/tidy.py new file mode 100644 index 00000000..eff967bf --- /dev/null +++ b/src/etc/tidy.py @@ -0,0 +1,25 @@ +#!/usr/bin/python + +import sys, fileinput + +err=0 +cols=78 + +def report_err(s): + global err + print("%s:%d: %s" % (fileinput.filename(), fileinput.filelineno(), s)) + err=1 + +for line in fileinput.input(openhook=fileinput.hook_encoded("utf-8")): + if line.find('\t') != -1 and fileinput.filename().find("Makefile") == -1: + report_err("tab character") + + if line.find('\r') != -1: + report_err("CR character") + + if len(line)-1 > cols: + report_err("line longer than %d chars" % cols) + + +sys.exit(err) + -- cgit v1.2.3