summaryrefslogtreecommitdiff
path: root/pylint/checkers/stdlib.py
diff options
context:
space:
mode:
author谭九鼎 <109224573@qq.com>2020-06-11 14:25:03 +0800
committerGitHub <noreply@github.com>2020-06-11 08:25:03 +0200
commit201daa6f77a6ea2c630629cb7a944f341b46a454 (patch)
tree0a8c16577a684d8956ff7aac1f2f60346b590606 /pylint/checkers/stdlib.py
parent2a883cbc4361603c720addae6d9420e8a156e313 (diff)
downloadpylint-git-201daa6f77a6ea2c630629cb7a944f341b46a454.tar.gz
Chore: use https links (#3679)
Diffstat (limited to 'pylint/checkers/stdlib.py')
-rw-r--r--pylint/checkers/stdlib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/checkers/stdlib.py b/pylint/checkers/stdlib.py
index 29c0cbb52..587a1a082 100644
--- a/pylint/checkers/stdlib.py
+++ b/pylint/checkers/stdlib.py
@@ -89,7 +89,7 @@ class StdlibChecker(BaseChecker):
"bad-open-mode",
"Python supports: r, w, a[, x] modes with b, +, "
"and U (only with r) options. "
- "See http://docs.python.org/2/library/functions.html#open",
+ "See https://docs.python.org/2/library/functions.html#open",
),
"W1502": (
"Using datetime.time in a boolean context.",
@@ -97,7 +97,7 @@ class StdlibChecker(BaseChecker):
"Using datetime.time in a boolean context can hide "
"subtle bugs when the time they represent matches "
"midnight UTC. This behaviour was fixed in Python 3.5. "
- "See http://bugs.python.org/issue13936 for reference.",
+ "See https://bugs.python.org/issue13936 for reference.",
{"maxversion": (3, 5)},
),
"W1503": (