Reformat to EOL80.

This commit is contained in:
Georg Brandl
2009-01-10 21:23:39 +01:00
parent d0e0acaaa1
commit b068e91803
36 changed files with 554 additions and 369 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ def check_syntax(fn, lines):
def check_style_and_encoding(fn, lines):
encoding = 'ascii'
for lno, line in enumerate(lines):
if len(line) > 90:
if len(line) > 81:
yield lno+1, "line too long"
if lno < 2:
co = coding_re.search(line)