merge with stable

This commit is contained in:
Georg Brandl
2014-03-02 08:50:10 +01:00
8 changed files with 27 additions and 17 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ if sys.version_info < (3, 0):
def check_style_and_encoding(fn, lines):
encoding = 'ascii'
for lno, line in enumerate(lines):
if len(line) > 81:
if len(line) > 90:
yield lno+1, "line too long"
if lno < 2:
co = coding_re.search(line)