@@ -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
5252For 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
6161Mypy is in development; some features are missing and there are bugs.
6262See 'Development status' below.
@@ -73,7 +73,7 @@ In Ubuntu, Mint and Debian you can install Python 3 like this:
7373
7474For 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
7979Quick start
@@ -125,7 +125,7 @@ Mypy can be integrated into popular IDEs:
125125Mypy can also be integrated into [ Flake8] using [ flake8-mypy] , or
126126can 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.
218218Working 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 .
222222This submodule contains types for the Python standard library.
223223
224224Due to the way git submodules work, you'll have to do
@@ -256,7 +256,7 @@ future.
256256Changelog
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
262262Issue tracker
0 commit comments