summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-30 21:30:01 (GMT)
committerGeorg Brandl <georg@python.org>2014-10-30 21:30:01 (GMT)
commitf2b56518f90c50b49e2d91e3d2d01715c612cd19 (patch)
treee8fc9b449510d920dd27eef75267f54e63f6cd49 /Doc
parent6b4c847c4f299517ec991621710c02459d204f05 (diff)
downloadcpython-f2b56518f90c50b49e2d91e3d2d01715c612cd19.zip
cpython-f2b56518f90c50b49e2d91e3d2d01715c612cd19.tar.gz
cpython-f2b56518f90c50b49e2d91e3d2d01715c612cd19.tar.bz2
rstlint: recognize "deprecated-removed" directive
Diffstat (limited to 'Doc')
-rwxr-xr-xDoc/tools/rstlint.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/tools/rstlint.py b/Doc/tools/rstlint.py
index 2cc3d12..39fb7e8 100755
--- a/Doc/tools/rstlint.py
+++ b/Doc/tools/rstlint.py
@@ -15,7 +15,6 @@ import os
import re
import sys
import getopt
-import subprocess
from os.path import join, splitext, abspath, exists
from collections import defaultdict
@@ -33,7 +32,8 @@ directives = [
'autoexception', 'autofunction', 'automethod', 'automodule', 'centered',
'cfunction', 'class', 'classmethod', 'cmacro', 'cmdoption', 'cmember',
'code-block', 'confval', 'cssclass', 'ctype', 'currentmodule', 'cvar',
- 'data', 'deprecated', 'describe', 'directive', 'doctest', 'envvar', 'event',
+ 'data', 'deprecated-removed', 'deprecated(?!-removed)', 'describe', 'directive',
+ 'doctest', 'envvar', 'event',
'exception', 'function', 'glossary', 'highlight', 'highlightlang', 'index',
'literalinclude', 'method', 'module', 'moduleauthor', 'productionlist',
'program', 'role', 'sectionauthor', 'seealso', 'sourcecode', 'staticmethod',
@@ -51,6 +51,7 @@ checkers = {}
checker_props = {'severity': 1, 'falsepositives': False}
+
def checker(*suffixes, **kwds):
"""Decorator to register a function as a checker."""
def deco(func):