mirror of https://github.com/python/cpython
linkcheck: ignore issue URLs and PEP URLs (the latter until the PEPs are on www.python.org again).
This commit is contained in:
parent
525d355984
commit
0ef496678a
10
Doc/conf.py
10
Doc/conf.py
|
@ -172,6 +172,16 @@ coverage_ignore_c_items = {
|
|||
# 'cfunction': [...]
|
||||
}
|
||||
|
||||
|
||||
# Options for the link checker
|
||||
# ----------------------------
|
||||
|
||||
# Ignore certain URLs.
|
||||
linkcheck_ignore = [r'https://bugs.python.org/(issue)?\d+',
|
||||
# Ignore PEPs for now, they all have permanent redirects.
|
||||
r'http://www.python.org/dev/peps/pep-\d+']
|
||||
|
||||
|
||||
# Options for extensions
|
||||
# ----------------------
|
||||
|
||||
|
|
Loading…
Reference in New Issue