Skip to content

Commit 201daa6

Browse files
authored
Chore: use https links (#3679)
1 parent 2a883cb commit 201daa6

31 files changed

+56
-56
lines changed

.github/ISSUE_TEMPLATE/3_Question.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Support question
3-
about: Questions about pylint that are not covered in the documentation (http://pylint.pycqa.org/en/latest/)
3+
about: Questions about pylint that are not covered in the documentation (https://pylint.pycqa.org/en/latest/)
44

55
---
66

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
README for Pylint - http://pylint.pycqa.org/
2+
README for Pylint - https://pylint.pycqa.org/
33
============================================
44

55
.. image:: https://travis-ci.org/PyCQA/pylint.svg?branch=master
@@ -18,7 +18,7 @@ README for Pylint - http://pylint.pycqa.org/
1818
:target: https://pypi.python.org/pypi/pylint
1919

2020
.. image:: https://readthedocs.org/projects/pylint/badge/?version=latest
21-
:target: http://pylint.readthedocs.io/en/latest/?badge=latest
21+
:target: https://pylint.readthedocs.io/en/latest/?badge=latest
2222
:alt: Documentation Status
2323

2424
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
@@ -95,7 +95,7 @@ can be found here_.
9595
Documentation
9696
-------------
9797

98-
The documentation lives at http://pylint.pycqa.org/.
98+
The documentation lives at https://pylint.pycqa.org/.
9999

100100
Pylint is shipped with following additional commands:
101101

@@ -152,7 +152,7 @@ Do not forget to clone astroid_ and install the last version::
152152

153153
For more detailed information, check the documentation.
154154

155-
.. _here: http://pylint.pycqa.org/en/latest/user_guide/installation.html
155+
.. _here: https://pylint.pycqa.org/en/latest/user_guide/installation.html
156156
.. _tox: https://tox.readthedocs.io/en/latest/
157157
.. _pytest: https://docs.pytest.org/en/latest/
158158
.. _pytest-cov: https://pypi.org/project/pytest-cov/

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Build-Depends: debhelper (>= 5.0.38), python (>= 2.5)
99
Build-Depends-Indep: python-support
1010
XS-Python-Version: >= 2.5
1111
Standards-Version: 3.8.2
12-
Homepage: http://www.pylint.org
12+
Homepage: https://www.pylint.org
1313
Vcs-Svn: svn://svn.debian.org/svn/python-apps/packages/pylint/trunk/
1414
Vcs-Hg: https://bitbucket.org/logilab/pylint
1515
Vcs-Browser: https://bitbucket.org/logilab/pylint/src

debian/rules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
# GNU copyright 1997 to 1999 by Joey Hess.
44
#
55
# adapted by Logilab for automatic generation by debianize
6-
# (part of the devtools project, http://www.logilab.org/projects/devtools)
6+
# (part of the devtools project, https://www.logilab.org/projects/devtools)
77
#
88
# Copyright (c) 2003-2010 LOGILAB S.A. (Paris, FRANCE).
9-
# http://www.logilab.fr/ -- mailto:[email protected]
9+
# https://www.logilab.fr/ -- mailto:[email protected]
1010

1111
# Uncomment this to turn on verbose mode.
1212
#export DH_VERBOSE=1

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
"collapsiblesidebar": True,
109109
"issues_url": "https://github.com/pycqa/pylint/issues/new",
110110
"root_name": "PyCQA",
111-
"root_url": "http://meta.pycqa.org/en/latest/",
111+
"root_url": "https://meta.pycqa.org/en/latest/",
112112
}
113113

114114
# Add any paths that contain custom themes here, relative to this directory.
@@ -233,7 +233,7 @@
233233
]
234234

235235
intersphinx_mapping = {
236-
"astroid": ("http://astroid.readthedocs.io/en/latest/", None),
236+
"astroid": ("https://astroid.readthedocs.io/en/latest/", None),
237237
"python": ("https://docs.python.org/3", None),
238238
}
239239

doc/development_guide/contribute.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ Mailing lists
3434
-------------
3535

3636
You can subscribe to this mailing list at
37-
http://mail.python.org/mailman/listinfo/code-quality
37+
https://mail.python.org/mailman/listinfo/code-quality
3838

3939
Archives are available at
40-
http://mail.python.org/pipermail/code-quality/
40+
https://mail.python.org/pipermail/code-quality/
4141

4242
Archives before April 2013 are available at
43-
http://lists.logilab.org/pipermail/python-projects/
43+
https://lists.logilab.org/pipermail/python-projects/
4444

4545

4646
.. _repository:
@@ -162,8 +162,8 @@ current environment in order to have faster feedback. Run with::
162162

163163
.. _`Closing issues via commit messages`: https://help.github.com/articles/closing-issues-via-commit-messages/
164164
.. _`About pull requests`: https://help.github.com/articles/using-pull-requests/
165-
.. _tox: http://tox.readthedocs.io/en/latest/
166-
.. _pytest: http://pytest.readthedocs.io/en/latest/
165+
.. _tox: https://tox.readthedocs.io/en/latest/
166+
.. _pytest: https://pytest.readthedocs.io/en/latest/
167167
.. _black: https://github.com/ambv/black
168168
.. _isort: https://github.com/timothycrosley/isort
169169
.. _astroid: https://github.com/pycqa/astroid

doc/faq.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pylint is a `static code checker`_, meaning it can analyse your code without
1616
actually running it. Pylint checks for errors, tries to enforce a coding
1717
standard, and tries to enforce a coding style.
1818

19-
.. _`static code checker`: http://en.wikipedia.org/wiki/Static_code_analysis
19+
.. _`static code checker`: https://en.wikipedia.org/wiki/Static_code_analysis
2020

2121

2222
2. Installation
@@ -36,7 +36,7 @@ Pylint from the repository, simply invoke ::
3636

3737
git clone https://github.com/PyCQA/pylint
3838

39-
.. _git: http://git-scm.com/
39+
.. _git: https://git-scm.com/
4040

4141
2.3 What are Pylint's dependencies?
4242
-----------------------------------

doc/how_tos/custom_checkers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ We could also construct a more complete example::
170170
For :func:`astroid.extract_node`, you can use ``#@`` at the end of a line to choose which statements will be extracted into nodes.
171171

172172
For more information on :func:`astroid.extract_node`,
173-
see the `astroid documentation <http://astroid.readthedocs.io/en/latest/>`_.
173+
see the `astroid documentation <https://astroid.readthedocs.io/en/latest/>`_.
174174

175175
Now we know how to use the astroid node, we can implement our check.
176176

doc/how_tos/transform_plugins.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,5 +105,5 @@ an example, any code transformation can be done by plugins.
105105

106106
See `astroid/brain`_ for real life examples of transform plugins.
107107

108-
.. _`warnings.py`: http://hg.python.org/cpython/file/2.7/Lib/warnings.py
108+
.. _`warnings.py`: https://hg.python.org/cpython/file/2.7/Lib/warnings.py
109109
.. _`astroid/brain`: https://github.com/PyCQA/astroid/tree/master/astroid/brain

doc/tutorial.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ My command line prompt for these examples is:
3838

3939
robertk01 Desktop$
4040

41-
.. _PEP 8: http://www.python.org/dev/peps/pep-0008/
41+
.. _PEP 8: https://www.python.org/dev/peps/pep-0008/
4242

4343
Getting Started
4444
---------------
@@ -283,4 +283,4 @@ example but go ahead and `read up`_ on them if you want.
283283

284284
That's it for the basic intro. More tutorials will follow.
285285

286-
.. _`read up`: http://docs.python.org/library/re.html
286+
.. _`read up`: https://docs.python.org/library/re.html

doc/user_guide/ide-integration.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66

77
To use Pylint with:
88

9-
- Emacs_, see http://www.emacswiki.org/emacs/PythonProgrammingInEmacs#toc8,
10-
- Vim_, see http://www.vim.org/scripts/script.php?script_id=891,
9+
- Emacs_, see https://www.emacswiki.org/emacs/PythonProgrammingInEmacs#toc8,
10+
- Vim_, see https://www.vim.org/scripts/script.php?script_id=891,
1111
- `Visual Studio`_, see https://docs.microsoft.com/visualstudio/python/code-pylint,
12-
- Eclipse_ and PyDev_, see http://pydev.org/manual_adv_pylint.html,
12+
- Eclipse_ and PyDev_, see https://pydev.org/manual_adv_pylint.html,
1313
- Komodo_, see http://mateusz.loskot.net/posts/2006/01/15/running-pylint-from-komodo/,
1414
- gedit_, see https://launchpad.net/gedit-pylint-2 or https://wiki.gnome.org/Apps/Gedit/PylintPlugin,
15-
- WingIDE_, see http://www.wingware.com/doc/edit/pylint,
15+
- WingIDE_, see https://www.wingware.com/doc/edit/pylint,
1616
- PyCharm_, see :ref:`the section below <pylint_in_pycharm>`,
1717
- TextMate_, see :ref:`the section below <pylint_in_textmate>`
1818
- `Visual Studio Code`_, see https://code.visualstudio.com/docs/python/linting#_pylint,
@@ -26,19 +26,19 @@ Pylint is integrated in:
2626
- pyscripter_, see the `Tool -> Tools` menu.
2727
- `Visual Studio Code`_, see the `Preferences -> Settings` menu.
2828

29-
.. _Emacs: http://www.gnu.org/software/emacs/
30-
.. _Vim: http://www.vim.org/
29+
.. _Emacs: https://www.gnu.org/software/emacs/
30+
.. _Vim: https://www.vim.org/
3131
.. _Visual Studio: https://www.visualstudio.com/
3232
.. _Eclipse: https://www.eclipse.org/
33-
.. _Eric: http://eric-ide.python-projects.org/
34-
.. _pyscripter: http://code.google.com/p/pyscripter/
35-
.. _pydev: http://pydev.org
33+
.. _Eric: https://eric-ide.python-projects.org/
34+
.. _pyscripter: https://github.com/pyscripter/pyscripter
35+
.. _pydev: https://pydev.org
3636
.. _Komodo: http://www.activestate.com/Products/Komodo/
3737
.. _gedit: https://wiki.gnome.org/Apps/Gedit
38-
.. _WingIDE: http://www.wingware.com/
38+
.. _WingIDE: https://www.wingware.com/
3939
.. _spyder: https://www.spyder-ide.org/
40-
.. _PyCharm: http://www.jetbrains.com/pycharm/
41-
.. _TextMate: http://macromates.com
40+
.. _PyCharm: https://www.jetbrains.com/pycharm/
41+
.. _TextMate: https://macromates.com
4242
.. _Visual Studio Code: https://code.visualstudio.com/
4343

4444
Using Pylint thru flymake in Emacs

doc/user_guide/output.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ A few other examples:
5252
{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}
5353

5454

55-
.. _Python new format syntax: http://docs.python.org/2/library/string.html#formatstrings
55+
.. _Python new format syntax: https://docs.python.org/2/library/string.html#formatstrings
5656

5757
Source code analysis section
5858
''''''''''''''''''''''''''''

doc/whatsnew/2.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,5 +355,5 @@ Other Changes
355355

356356

357357
.. _PEP 563: https://www.python.org/dev/peps/pep-0563/
358-
.. _style guide: http://docs.python-guide.org/en/latest/writing/style/
358+
.. _style guide: https://docs.python-guide.org/en/latest/writing/style/
359359
.. _swap values presentation: http://python.net/~goodger/projects/pycon/2007/idiomatic/handout.html#swap-values

man/pyreverse.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Python
109109
.SH "SEE ALSO"
110110
.B dot(1), pylint(1)
111111

112-
.I http://www.logilab.org/pyreverse
112+
.I https://www.logilab.org/pyreverse
113113

114114
.SH AUTHORS
115115
Sylvain Thenault, Emile Anclin

pylint/checkers/python3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ class Python3Checker(checkers.BaseChecker):
198198
"unpacking-in-except",
199199
"Python3 will not allow implicit unpacking of "
200200
"exceptions in except clauses. "
201-
"See http://www.python.org/dev/peps/pep-3110/",
201+
"See https://www.python.org/dev/peps/pep-3110/",
202202
{"old_names": [("W0712", "old-unpacking-in-except")]},
203203
),
204204
"E1604": (

pylint/checkers/raw_metrics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
1313

1414
""" Copyright (c) 2003-2010 LOGILAB S.A. (Paris, FRANCE).
15-
http://www.logilab.fr/ -- mailto:[email protected]
15+
https://www.logilab.fr/ -- mailto:[email protected]
1616
1717
Raw metrics checker
1818
"""

pylint/checkers/stdlib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,15 @@ class StdlibChecker(BaseChecker):
8989
"bad-open-mode",
9090
"Python supports: r, w, a[, x] modes with b, +, "
9191
"and U (only with r) options. "
92-
"See http://docs.python.org/2/library/functions.html#open",
92+
"See https://docs.python.org/2/library/functions.html#open",
9393
),
9494
"W1502": (
9595
"Using datetime.time in a boolean context.",
9696
"boolean-datetime",
9797
"Using datetime.time in a boolean context can hide "
9898
"subtle bugs when the time they represent matches "
9999
"midnight UTC. This behaviour was fixed in Python 3.5. "
100-
"See http://bugs.python.org/issue13936 for reference.",
100+
"See https://bugs.python.org/issue13936 for reference.",
101101
{"maxversion": (3, 5)},
102102
),
103103
"W1503": (

pylint/checkers/strings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ def process_non_raw_string_token(self, prefix, string_body, start_row):
828828
#
829829
# Accept a backslash when it escapes a backslash, or a quote, or
830830
# end-of-line, or one of the letters that introduce a special escape
831-
# sequence <http://docs.python.org/reference/lexical_analysis.html>
831+
# sequence <https://docs.python.org/reference/lexical_analysis.html>
832832
#
833833
index = 0
834834
while True:

pylint/graph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,15 +131,15 @@ def emit(self, line):
131131

132132
def emit_edge(self, name1, name2, **props):
133133
"""emit an edge from <name1> to <name2>.
134-
edge properties: see http://www.graphviz.org/doc/info/attrs.html
134+
edge properties: see https://www.graphviz.org/doc/info/attrs.html
135135
"""
136136
attrs = ['%s="%s"' % (prop, value) for prop, value in props.items()]
137137
n_from, n_to = normalize_node_id(name1), normalize_node_id(name2)
138138
self.emit("%s -> %s [%s];" % (n_from, n_to, ", ".join(sorted(attrs))))
139139

140140
def emit_node(self, name, **props):
141141
"""emit a node with given properties.
142-
node properties: see http://www.graphviz.org/doc/info/attrs.html
142+
node properties: see https://www.graphviz.org/doc/info/attrs.html
143143
"""
144144
attrs = ['%s="%s"' % (prop, value) for prop, value in props.items()]
145145
self.emit("%s [%s];" % (normalize_node_id(name), ", ".join(sorted(attrs))))

pylint/message/message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def format(self, template):
4444
"""Format the message according to the given template.
4545
4646
The template format is the one of the format method :
47-
cf. http://docs.python.org/2/library/string.html#formatstrings
47+
cf. https://docs.python.org/2/library/string.html#formatstrings
4848
"""
4949
# For some reason, _asdict on derived namedtuples does not work with
5050
# Python 3.4. Needs some investigation.

pylint/pyreverse/vcgutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"""Functions to generate files readable with Georg Sander's vcg
1010
(Visualization of Compiler Graphs).
1111
12-
You can download vcg at http://rw4.cs.uni-sb.de/~sander/html/gshome.html
12+
You can download vcg at https://rw4.cs.uni-sb.de/~sander/html/gshome.html
1313
Note that vcg exists as a debian package.
1414
1515
See vcg's documentation for explanation about the different values that

pylint/testutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def _create_tempfile(content=None):
286286
"""
287287
# Can't use tempfile.NamedTemporaryFile here
288288
# because on Windows the file must be closed before writing to it,
289-
# see http://bugs.python.org/issue14243
289+
# see https://bugs.python.org/issue14243
290290
file_handle, tmp = tempfile.mkstemp()
291291
if content:
292292
# erff

pylint/utils/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def expand_modules(files_or_modules, black_list, black_list_re):
166166
continue
167167
except (ImportError, SyntaxError) as ex:
168168
# The SyntaxError is a Python bug and should be
169-
# removed once we move away from imp.find_module: http://bugs.python.org/issue10588
169+
# removed once we move away from imp.find_module: https://bugs.python.org/issue10588
170170
errors.append({"key": "fatal", "mod": modname, "ex": ex})
171171
continue
172172

tests/functional/d/defined_and_used_on_same_line.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def func2(xxx): return xxx + func2(1)
2121

2222
FUNC4 = lambda a, b: a != b
2323

24-
# test http://www.logilab.org/ticket/6954:
24+
# test https://www.logilab.org/ticket/6954:
2525

2626
with open('f') as f: print(f.read())
2727

tests/functional/r/redundant_unittest_assert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# pylint: disable=missing-docstring,too-few-public-methods
22
"""
3-
http://www.logilab.org/ticket/355
3+
https://www.logilab.org/ticket/355
44
If you are using assertTrue or assertFalse and the first argument is a
55
constant(like a string), then the assert will always be true. Therefore,
66
it should emit a warning message.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[testoptions]
2-
;http://bugs.python.org/issue10445
2+
;https://bugs.python.org/issue10445
33
max_pyver=3.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[testoptions]
2-
;http://bugs.python.org/issue10445
2+
;https://bugs.python.org/issue10445
33
min_pyver=3.4

tests/input/func_module___dict__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""http://www.logilab.org/ticket/6949."""
1+
"""https://www.logilab.org/ticket/6949."""
22
from __future__ import print_function
33
__revision__ = None
44

tests/input/func_noerror_e1101_9588_base_attr_aug_assign.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
The error is triggered when the attribute set in the base class is
66
modified with augmented assignment in a derived class.
77
8-
http://www.logilab.org/ticket/9588
8+
https://www.logilab.org/ticket/9588
99
"""
1010
__revision__ = 0
1111

tests/input/func_noerror_yield_assign_py25.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""http://www.logilab.org/ticket/8771"""
1+
"""https://www.logilab.org/ticket/8771"""
22

33
from __future__ import print_function
44

tests/regrtest_data/absimp/string.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
http://www.logilab.org/ticket/70495
3-
http://www.logilab.org/ticket/70565
2+
https://www.logilab.org/ticket/70495
3+
https://www.logilab.org/ticket/70565
44
"""
55
from __future__ import absolute_import, print_function
66
import string

0 commit comments

Comments
 (0)