Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53dfcd8 commit e6f8c50Copy full SHA for e6f8c50
1 file changed
Doc/tools/pyspecific.py
@@ -9,7 +9,7 @@
9
:license: Python license.
10
"""
11
12
-ISSUE_URI = 'http://bugs.python.org/issue%s'
+ISSUE_URI = 'https://bugs.python.org/issue%s'
13
SOURCE_URI = 'https://hg.python.org/cpython/file/3.4/%s'
14
15
from docutils import nodes, utils
@@ -204,7 +204,7 @@ def run(self):
204
text = 'The NEWS file is not available.'
205
node = nodes.strong(text, text)
206
return [node]
207
- content = issue_re.sub(r'`\1ssue #\2 <http://bugs.python.org/\2>`__',
+ content = issue_re.sub(r'`\1ssue #\2 <https://bugs.python.org/\2>`__',
208
content)
209
content = whatsnew_re.sub(r'\1', content)
210
# remove first 3 lines as they are the main heading
0 commit comments