Skip to content

Readme: use https links #8954

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 8, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def fib(n: int) -> Iterator[int]:
yield a
a, b = b, a + b
```
See [the documentation](http://mypy.readthedocs.io/en/stable/introduction.html) for more examples.
See [the documentation](https://mypy.readthedocs.io/en/stable/introduction.html) for more examples.

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

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

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

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

http://www.python.org/getit/
https://www.python.org/getit/


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

[Flake8]: http://flake8.pycqa.org/
[Flake8]: https://flake8.pycqa.org/
[flake8-mypy]: https://github.com/ambv/flake8-mypy
[pre-commit mirrors-mypy]: https://github.com/pre-commit/mirrors-mypy

Expand Down Expand Up @@ -218,7 +218,7 @@ see "Troubleshooting" above.
Working with the git version of mypy
------------------------------------

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

Due to the way git submodules work, you'll have to do
Expand Down Expand Up @@ -256,7 +256,7 @@ future.
Changelog
---------

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


Issue tracker
Expand Down