Skip to content

Commit 1ae0855

Browse files
authored
Readme: use https links (#8954)
1 parent 109e15d commit 1ae0855

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def fib(n: int) -> Iterator[int]:
4747
yield a
4848
a, b = b, a + b
4949
```
50-
See [the documentation](http://mypy.readthedocs.io/en/stable/introduction.html) for more examples.
50+
See [the documentation](https://mypy.readthedocs.io/en/stable/introduction.html) for more examples.
5151

5252
For Python 2.7, the standard annotations are written as comments:
5353
```python
@@ -56,7 +56,7 @@ def is_palindrome(s):
5656
return s == s[::-1]
5757
```
5858

59-
See [the documentation for Python 2 support](http://mypy.readthedocs.io/en/latest/python2.html).
59+
See [the documentation for Python 2 support](https://mypy.readthedocs.io/en/latest/python2.html).
6060

6161
Mypy is in development; some features are missing and there are bugs.
6262
See 'Development status' below.
@@ -73,7 +73,7 @@ In Ubuntu, Mint and Debian you can install Python 3 like this:
7373

7474
For other Linux flavors, macOS and Windows, packages are available at
7575

76-
http://www.python.org/getit/
76+
https://www.python.org/getit/
7777

7878

7979
Quick start
@@ -125,7 +125,7 @@ Mypy can be integrated into popular IDEs:
125125
Mypy can also be integrated into [Flake8] using [flake8-mypy], or
126126
can be set up as a pre-commit hook using [pre-commit mirrors-mypy].
127127

128-
[Flake8]: http://flake8.pycqa.org/
128+
[Flake8]: https://flake8.pycqa.org/
129129
[flake8-mypy]: https://github.com/ambv/flake8-mypy
130130
[pre-commit mirrors-mypy]: https://github.com/pre-commit/mirrors-mypy
131131

@@ -218,7 +218,7 @@ see "Troubleshooting" above.
218218
Working with the git version of mypy
219219
------------------------------------
220220

221-
mypy contains a submodule, "typeshed". See http://github.com/python/typeshed.
221+
mypy contains a submodule, "typeshed". See https://github.com/python/typeshed.
222222
This submodule contains types for the Python standard library.
223223

224224
Due to the way git submodules work, you'll have to do
@@ -256,7 +256,7 @@ future.
256256
Changelog
257257
---------
258258

259-
Follow mypy's updates on the blog: http://mypy-lang.blogspot.com/
259+
Follow mypy's updates on the blog: https://mypy-lang.blogspot.com/
260260

261261

262262
Issue tracker

0 commit comments

Comments
 (0)