From 53dfcd86e93d78c0070d3da19e932694518b5c40 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 13 Oct 2014 12:55:21 -0700 Subject: issue22626: Use https:// for a link to the bug tracker --- Doc/bugs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/bugs.rst b/Doc/bugs.rst index 847c010..4e83d4d 100644 --- a/Doc/bugs.rst +++ b/Doc/bugs.rst @@ -29,7 +29,7 @@ Using the Python issue tracker ============================== Bug reports for Python itself should be submitted via the Python Bug Tracker -(http://bugs.python.org/). The bug tracker offers a Web form which allows +(https://bugs.python.org/). The bug tracker offers a Web form which allows pertinent information to be entered and submitted to the developers. The first step in filing a report is to determine whether the problem has -- cgit v0.12 From e6f8c5025afd9f88844a80ec03d61290ef5ef2d1 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 13 Oct 2014 12:58:03 -0700 Subject: Use https:// URLs for the bug tracker in the :issue: role. Thanks to Ezio for noticing this --- Doc/tools/pyspecific.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/tools/pyspecific.py b/Doc/tools/pyspecific.py index 211a0ed..a17406a 100644 --- a/Doc/tools/pyspecific.py +++ b/Doc/tools/pyspecific.py @@ -9,7 +9,7 @@ :license: Python license. """ -ISSUE_URI = 'http://bugs.python.org/issue%s' +ISSUE_URI = 'https://bugs.python.org/issue%s' SOURCE_URI = 'https://hg.python.org/cpython/file/3.4/%s' from docutils import nodes, utils @@ -204,7 +204,7 @@ class MiscNews(Directive): text = 'The NEWS file is not available.' node = nodes.strong(text, text) return [node] - content = issue_re.sub(r'`\1ssue #\2 `__', + content = issue_re.sub(r'`\1ssue #\2 `__', content) content = whatsnew_re.sub(r'\1', content) # remove first 3 lines as they are the main heading -- cgit v0.12