Skip to content

Commit

Permalink
Update hyperlink redirects (#1380)
Browse files Browse the repository at this point in the history
* Update hyperlink redirects

* Update index.rst

Co-authored-by: Ezio Melotti <[email protected]>

---------

Co-authored-by: Ezio Melotti <[email protected]>
  • Loading branch information
hugovk and ezio-melotti committed Aug 28, 2024
1 parent b16430b commit 3cea249
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Code of Conduct
Please note that all interactions on
[Python Software Foundation](https://www.python.org/psf-landing/)-supported
infrastructure is [covered](https://www.python.org/psf/records/board/minutes/2014-01-06/#management-of-the-psfs-web-properties)
by the [PSF Code of Conduct](https://www.python.org/psf/conduct/),
by the [PSF Code of Conduct](https://policies.python.org/python.org/code-of-conduct/),
which includes all infrastructure used in the development of Python itself
(for example, mailing lists, issue trackers, GitHub, etc.).

Expand Down
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ someone could take a look at your pull request.
## Code of Conduct

All interactions for this project are covered by the
[PSF Code of Conduct](https://www.python.org/psf/conduct/). Everyone is
[PSF Code of Conduct](https://policies.python.org/python.org/code-of-conduct/). Everyone is
expected to be open, considerate, and respectful of others no matter their
position within the project.
2 changes: 1 addition & 1 deletion core-developers/become-core-developer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ are granted through these steps:
were in the form of a separate post on the already open topic with
the poll.

.. _Code of Conduct: https://www.python.org/psf/conduct/
.. _Code of Conduct: https://policies.python.org/python.org/code-of-conduct/
.. _Committers category: https://discuss.python.org/c/committers/5
.. _Python Discourse: https://discuss.python.org
2 changes: 1 addition & 1 deletion core-developers/responsibilities.rst
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,4 @@ And finally, enjoy yourself! Contributing to open source software should be fun
(overall). If you find yourself no longer enjoying the work then either take a
break or figure out what you need to do to make it enjoyable again.

.. _PSF Code of Conduct: https://www.python.org/psf/conduct/
.. _PSF Code of Conduct: https://policies.python.org/python.org/code-of-conduct/
2 changes: 1 addition & 1 deletion developer-workflow/communication-channels.rst
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ mailing list mode" and save changes.
.. _Core Development: https://discuss.python.org/c/core-dev/23
.. _Committers: https://discuss.python.org/c/committers/5
.. _Ideas: https://discuss.python.org/c/ideas/6
.. _Python Help: https://discuss.python.org/c/users/7
.. _Python Help: https://discuss.python.org/c/help/7


Discord (private chat server)
Expand Down
2 changes: 1 addition & 1 deletion getting-started/setup-building.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ itself. Git is easily available for all common operating systems.
- **Install**

As the CPython repo is hosted on GitHub, please refer to either the
`GitHub setup instructions <https://docs.github.com/en/get-started/quickstart/set-up-git>`_
`GitHub setup instructions <https://docs.github.com/en/get-started/getting-started-with-git/set-up-git>`_
or the `Git project instructions <https://git-scm.com>`_ for step-by-step
installation directions. You may also want to consider a graphical client
such as `TortoiseGit <https://tortoisegit.org/>`_ or
Expand Down
4 changes: 2 additions & 2 deletions index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ Please note that all interactions on
`Python Software Foundation <https://www.python.org/psf-landing/>`__-supported
infrastructure is `covered
<https://www.python.org/psf/records/board/minutes/2014-01-06/#management-of-the-psfs-web-properties>`__
by the `PSF Code of Conduct <https://www.python.org/psf/conduct/>`__,
by the `PSF Code of Conduct <https://policies.python.org/python.org/code-of-conduct/>`__,
which includes all infrastructure used in the development of Python itself
(for example, mailing lists, issue trackers, GitHub, etc.).
In general this means everyone is expected to be open, considerate, and
Expand Down Expand Up @@ -322,7 +322,7 @@ Full table of contents
.. _python.org maintenance: https://pythondotorg.readthedocs.io/
.. _Python: https://www.python.org/
.. _Core Python Mentorship: https://www.python.org/dev/core-mentorship/
.. _PyPy: https://www.pypy.org
.. _PyPy: https://pypy.org
.. _Jython: https://www.jython.org/
.. _IronPython: https://ironpython.net/
.. _Stackless: https://github.com/stackless-dev/stackless/wiki/
Expand Down
2 changes: 1 addition & 1 deletion internals/interpreter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ The ``tb_lineno`` field of a traceback entry is (lazily) set to the line number
This field is computed from the locations table, ``co_linetable`` (this name is an understatement), using :c:func:`PyCode_Addr2Line`.
This table has an entry for every instruction rather than for every ``try`` block, so a compact format is very important.

The full design of the 3.11 locations table is written up in :cpy-file:`Objects/locations.md`.
The full design of the 3.11 locations table is written up in :cpy-file:`InternalDocs/locations.md`.
While there are rumors that this file is slightly out of date, it is still the best reference we have.
Don't be confused by :cpy-file:`Objects/lnotab_notes.txt`, which describes the 3.10 format.
For backwards compatibility this format is still supported by the ``co_lnotab`` property.
Expand Down
2 changes: 1 addition & 1 deletion internals/parser.rst
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ References
https://pdos.csail.mit.edu/~baford/packrat/thesis/
.. [2] Medeiros et al.
https://arxiv.org/pdf/1207.0443.pdf
https://arxiv.org/pdf/1207.0443
.. [3] Warth et al.
http://web.cs.ucla.edu/~todd/research/pepm08.pdf
Expand Down
2 changes: 1 addition & 1 deletion testing/new-buildbot-worker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ Latent workers
--------------

We also support running `latent workers
<http://docs.buildbot.net/current/manual/configuration/workers.html#latent-workers>`_
<https://docs.buildbot.net/current/manual/configuration/workers.html#latent-workers>`_
on the AWS EC2 service. To set up such a worker:

* Start an instance of your chosen base AMI and set it up as a
Expand Down
2 changes: 1 addition & 1 deletion triage/triage-team.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ or a veteran core developer, they're actively choosing to voluntarily donate the
time towards the improvement of Python. As is the case with any member of
the Python Software Foundation, always follow the `PSF Code of Conduct`_.

.. _PSF Code of Conduct: https://www.python.org/psf/conduct/
.. _PSF Code of Conduct: https://policies.python.org/python.org/code-of-conduct/


Becoming a member of the Python triage team
Expand Down

0 comments on commit 3cea249

Please sign in to comment.