[Python-checkins] r68228 - in python/branches/py3k/Doc: Makefile tools/rstlint.py
georg.brandl
python-checkins at python.org
Sat Jan 3 22:30:41 CET 2009
Author: georg.brandl
Date: Sat Jan 3 22:30:40 2009
New Revision: 68228
Log:
Merged revisions 68222 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68222 | georg.brandl | 2009-01-03 22:11:58 +0100 (Sat, 03 Jan 2009) | 2 lines
Disable the line length checker by default.
........
Modified:
python/branches/py3k/Doc/Makefile
python/branches/py3k/Doc/tools/rstlint.py
Modified: python/branches/py3k/Doc/Makefile
==============================================================================
--- python/branches/py3k/Doc/Makefile (original)
+++ python/branches/py3k/Doc/Makefile Sat Jan 3 22:30:40 2009
@@ -142,4 +142,4 @@
cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2
check:
- $(PYTHON) tools/rstlint.py -i tools -s 2
+ $(PYTHON) tools/rstlint.py -i tools
Modified: python/branches/py3k/Doc/tools/rstlint.py
==============================================================================
--- python/branches/py3k/Doc/tools/rstlint.py (original)
+++ python/branches/py3k/Doc/tools/rstlint.py Sat Jan 3 22:30:40 2009
@@ -91,7 +91,6 @@
@checker('.py', '.rst')
def check_whitespace(fn, lines):
"""Check for whitespace and line length issues."""
- lasti = 0
for lno, line in enumerate(lines):
if '\r' in line:
yield lno+1, '\\r in line'
@@ -99,7 +98,13 @@
yield lno+1, 'OMG TABS!!!1'
if line[:-1].rstrip(' \t') != line[:-1]:
yield lno+1, 'trailing whitespace'
- if len(line) > 86:
+
+
+ at checker('.rst', severity=0)
+def check_line_length(fn, lines):
+ """Check for line length; this checker is not run by default."""
+ for lno, line in enumerate(lines):
+ if len(line) > 81:
# don't complain about tables, links and function signatures
if line.lstrip()[0] not in '+|' and \
'http://' not in line and \
More information about the Python-checkins
mailing list