Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

bpo-25910: Fixes redirection from http to https#4674

Merged
vstinner merged 3 commits into
python:masterpython/cpython:masterfrom
CuriousLearner:fix-links-http-to-httpsCuriousLearner/cpython:fix-links-http-to-httpsCopy head branch name to clipboard
Dec 6, 2017
Merged

bpo-25910: Fixes redirection from http to https#4674
vstinner merged 3 commits into
python:masterpython/cpython:masterfrom
CuriousLearner:fix-links-http-to-httpsCuriousLearner/cpython:fix-links-http-to-httpsCopy head branch name to clipboard

Conversation

@CuriousLearner

@CuriousLearner CuriousLearner commented Dec 2, 2017

Copy link
Copy Markdown
Member

This PR extracts changes from #1933

Currently focuses mostly on fixing link redirection from http to https.

cc @vstinner

https://bugs.python.org/issue25910

Comment thread Doc/faq/gui.rst Outdated
releases, it also offers a number of features via pure Python
extensions that are not available in other language bindings. There
is an active wxPython user and developer community.
wxPython (https://www.wxpython.org) is the Python binding for wxwidgets.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would you mind to create a link?

`wxPython <url>`_

Comment thread Doc/faq/gui.rst Outdated
extensions that are not available in other language bindings. There
is an active wxPython user and developer community.
wxPython (https://www.wxpython.org) is the Python binding for wxwidgets.
While it often lags slightly behind the official wxWidgets releases, it also

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vadmium asked you to not reformat links like this, please restrict this PR to HTTPS.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apologies for that. I just extracted the same old changes from the earlier patch. I'll fix this.

Comment thread Doc/faq/windows.rst Outdated

See http://cx-freeze.sourceforge.net/ for a distutils extension that allows you
to create console and GUI executables from Python code.
See https://anthony-tuininga.github.io/cx_Freeze/ for a distutils extension

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please create a link. You may be able to omit the url here, since it's written in a previous section (check the HTML output, I'm not sure).

`cx_Freeze`_

Comment thread Doc/library/hashlib.rst
You should have received a copy of the CC0 Public Domain Dedication along
with this software. If not, see
http://creativecommons.org/publicdomain/zero/1.0/.
https://creativecommons.org/publicdomain/zero/1.0/.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This text is a license. Is it ok to modify a license?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure about that. Should I ask this on the bug?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's ok. I take the responsability for this change ;-)

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alright thanks :)

Comment thread Doc/using/windows.rst Outdated
:mod:`distutils` extension (see :ref:`extending-distutils`) which wraps
Python scripts into executable Windows programs (:file:`{*}.exe` files).
When you have done this, you can distribute your application without
requiring your users to install Python.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Again, please revert this change, only replace the HTTP link.

Comment thread Doc/whatsnew/2.7.rst Outdated
tests. It's not as fancy as `py.test <http://pytest.org>`__ or
`nose <http://code.google.com/p/python-nose/>`__, but provides a simple way
to run tests kept within a set of package directories. For example,
`nose <https://code.google.com/archive/p/python-nose>`__, but provides a

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This link seems undated. The new home is more https://nose.readthedocs.io/ no?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems like you're right about it. The make linkcheck command showed me this as a 301. So, I updated it to point to this link.

Comment thread Doc/whatsnew/3.6.rst Outdated
Tools that use or will use the new syntax:
`mypy <http://github.com/python/mypy>`_,
`pytype <http://github.com/google/pytype>`_, PyCharm, etc.
`mypy <https://github.com/python/mypy>`_,

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The home is more http://www.mypy-lang.org/ no?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated.

@bedevere-bot

Copy link
Copy Markdown

A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated.

Once you have made the requested changes, please leave a comment on this pull request containing the phrase I have made the requested changes; please review again. I will then notify any core developers who have left a review that you're ready for them to take another look at this pull request.

@CuriousLearner

Copy link
Copy Markdown
Member Author

I have made the requested changes; please review again

@bedevere-bot

Copy link
Copy Markdown

Thanks for making the requested changes!

@vstinner: please review the changes made to this pull request.

@vstinner vstinner left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

Comment thread Doc/library/hashlib.rst
You should have received a copy of the CC0 Public Domain Dedication along
with this software. If not, see
http://creativecommons.org/publicdomain/zero/1.0/.
https://creativecommons.org/publicdomain/zero/1.0/.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's ok. I take the responsability for this change ;-)

@vstinner

vstinner commented Dec 6, 2017

Copy link
Copy Markdown
Member

Thanks @CuriousLearner, I merged your PR.

@CuriousLearner

Copy link
Copy Markdown
Member Author

Thanks @vstinner.

@miss-islington

Copy link
Copy Markdown
Contributor

Thanks @CuriousLearner for the PR, and @vstinner for merging it 🌮🎉.. I'm working now to backport this PR to: 3.6.
🐍🍒⛏🤖

@miss-islington

Copy link
Copy Markdown
Contributor

Sorry, @CuriousLearner and @vstinner, I could not cleanly backport this to 3.6 due to a conflict.
Please backport using cherry_picker on command line.
cherry_picker 1b4587a2462fc05a14be87123083322103a1f55b 3.6

@ned-deily

Copy link
Copy Markdown
Member

Sorry, please ignore the backport to 3.6 noise!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants

Morty Proxy This is a proxified and sanitized view of the page, visit original site.