@@ -47,7 +47,7 @@ def fib(n: int) -> Iterator[int]:
47
47
yield a
48
48
a, b = b, a + b
49
49
```
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.
51
51
52
52
For Python 2.7, the standard annotations are written as comments:
53
53
``` python
@@ -56,7 +56,7 @@ def is_palindrome(s):
56
56
return s == s[::- 1 ]
57
57
```
58
58
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) .
60
60
61
61
Mypy is in development; some features are missing and there are bugs.
62
62
See 'Development status' below.
@@ -73,7 +73,7 @@ In Ubuntu, Mint and Debian you can install Python 3 like this:
73
73
74
74
For other Linux flavors, macOS and Windows, packages are available at
75
75
76
- http ://www.python.org/getit/
76
+ https ://www.python.org/getit/
77
77
78
78
79
79
Quick start
@@ -125,7 +125,7 @@ Mypy can be integrated into popular IDEs:
125
125
Mypy can also be integrated into [ Flake8] using [ flake8-mypy] , or
126
126
can be set up as a pre-commit hook using [ pre-commit mirrors-mypy] .
127
127
128
- [ Flake8 ] : http ://flake8.pycqa.org/
128
+ [ Flake8 ] : https ://flake8.pycqa.org/
129
129
[ flake8-mypy ] : https://github.com/ambv/flake8-mypy
130
130
[ pre-commit mirrors-mypy ] : https://github.com/pre-commit/mirrors-mypy
131
131
@@ -218,7 +218,7 @@ see "Troubleshooting" above.
218
218
Working with the git version of mypy
219
219
------------------------------------
220
220
221
- mypy contains a submodule, "typeshed". See http ://github.com/python/typeshed .
221
+ mypy contains a submodule, "typeshed". See https ://github.com/python/typeshed .
222
222
This submodule contains types for the Python standard library.
223
223
224
224
Due to the way git submodules work, you'll have to do
@@ -256,7 +256,7 @@ future.
256
256
Changelog
257
257
---------
258
258
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/
260
260
261
261
262
262
Issue tracker
0 commit comments