[Python-checkins] r68273 - in python/branches/release30-maint: Doc/Makefile Doc/tools/rstlint.py
georg.brandl
python-checkins at python.org
Sun Jan 4 01:02:16 CET 2009
Author: georg.brandl
Date: Sun Jan 4 01:02:15 2009
New Revision: 68273
Log:
Merged revisions 68223 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
................
r68223 | georg.brandl | 2009年01月03日 22:15:20 +0100 (2009年1月03日) | 21 lines
Merged revisions 68214-68215,68217-68218 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68214 | georg.brandl | 2009年01月03日 20:44:48 +0100 (2009年1月03日) | 2 lines
Make indentation consistent.
........
r68215 | georg.brandl | 2009年01月03日 21:15:14 +0100 (2009年1月03日) | 2 lines
Fix role name.
........
r68217 | georg.brandl | 2009年01月03日 21:30:15 +0100 (2009年1月03日) | 2 lines
Add rstlint, a little tool to find subtle markup problems and inconsistencies in the Doc sources.
........
r68218 | georg.brandl | 2009年01月03日 21:38:59 +0100 (2009年1月03日) | 2 lines
Recognize usage of the default role.
........
................
Added:
python/branches/release30-maint/Doc/tools/rstlint.py
- copied unchanged from r68223, /python/branches/py3k/Doc/tools/rstlint.py
Modified:
python/branches/release30-maint/ (props changed)
python/branches/release30-maint/Doc/Makefile
Modified: python/branches/release30-maint/Doc/Makefile
==============================================================================
--- python/branches/release30-maint/Doc/Makefile (original)
+++ python/branches/release30-maint/Doc/Makefile Sun Jan 4 01:02:15 2009
@@ -14,7 +14,7 @@
ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees -D latex_paper_size=$(PAPER) \
$(SPHINXOPTS) . build/$(BUILDER) $(SOURCES)
-.PHONY: help checkout update build html htmlhelp clean coverage dist
+.PHONY: help checkout update build html htmlhelp clean coverage dist check
help:
@echo "Please use \`make <target>' where <target> is one of"
@@ -141,3 +141,5 @@
cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip
cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2
+check:
+ $(PYTHON) tools/rstlint.py -i tools -s 2
More information about the Python-checkins
mailing list