Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7114c65

Browse files
authored
Docs: FIX broken links. (GH-13491)
1 parent f7fba6c commit 7114c65

7 files changed

Lines changed: 18 additions & 15 deletions

File tree

Doc/faq/gui.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ What platform-specific GUI toolkits exist for Python?
104104
========================================================
105105

106106
By installing the `PyObjc Objective-C bridge
107-
<https://pythonhosted.org/pyobjc/>`_, Python programs can use Mac OS X's
107+
<https://pypi.org/project/pyobjc/>`_, Python programs can use Mac OS X's
108108
Cocoa libraries.
109109

110110
:ref:`Pythonwin <windows-faq>` by Mark Hammond includes an interface to the

Doc/library/readline.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function.
1919

2020
Readline keybindings may be configured via an initialization file, typically
2121
``.inputrc`` in your home directory. See `Readline Init File
22-
<https://cnswww.cns.cwru.edu/php/chet/readline/rluserman.html#SEC9>`_
22+
<https://tiswww.cwru.edu/php/chet/readline/rluserman.html#SEC9>`_
2323
in the GNU Readline manual for information about the format and
2424
allowable constructs of that file, and the capabilities of the
2525
Readline library in general.

Doc/library/tkinter.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ installed, so you can read the Tcl/Tk documentation specific to that version.
5555
`Tcl/Tk recent man pages <https://www.tcl.tk/doc/>`_
5656
Recent Tcl/Tk manuals on www.tcl.tk.
5757

58-
`ActiveState Tcl Home Page <http://tcl.activestate.com/>`_
58+
`ActiveState Tcl Home Page <https://tcl.tk>`_
5959
The Tk/Tcl development is largely taking place at ActiveState.
6060

6161
`Tcl and the Tk Toolkit <https://www.amazon.com/exec/obidos/ASIN/020163337X>`_

Doc/using/mac.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ There are several options for building GUI applications on the Mac with Python.
141141

142142
*PyObjC* is a Python binding to Apple's Objective-C/Cocoa framework, which is
143143
the foundation of most modern Mac development. Information on PyObjC is
144-
available from https://pythonhosted.org/pyobjc/.
144+
available from https://pypi.org/project/pyobjc/.
145145

146146
The standard Python GUI toolkit is :mod:`tkinter`, based on the cross-platform
147147
Tk toolkit (https://www.tcl.tk). An Aqua-native version of Tk is bundled with OS

Doc/using/windows.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1043,7 +1043,9 @@ The `PyWin32 <https://pypi.org/project/pywin32>`_ module by Mark Hammond
10431043
is a collection of modules for advanced Windows-specific support. This includes
10441044
utilities for:
10451045

1046-
* `Component Object Model <https://www.microsoft.com/com/>`_ (COM)
1046+
* `Component Object Model
1047+
<https://docs.microsoft.com/en-us/windows/desktop/com/component-object-model--com--portal>`_
1048+
(COM)
10471049
* Win32 API calls
10481050
* Registry
10491051
* Event log
@@ -1109,8 +1111,7 @@ For extension modules, consult :ref:`building-on-windows`.
11091111
MinGW gcc under Windows" or "Installing Python extension with distutils
11101112
and without Microsoft Visual C++" by Sébastien Sauvage, 2003
11111113

1112-
`MingW -- Python extensions <http://oldwiki.mingw.org/index.php/Python%20extensions>`_
1113-
by Trent Apted et al, 2007
1114+
`MingW -- Python extensions <http://www.mingw.org/wiki/FAQ#toc14>`_
11141115

11151116

11161117
Other Platforms

Doc/whatsnew/2.6.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ the Python community.
227227

228228
Sphinx is a standalone package that can be used for writing, and
229229
almost two dozen other projects
230-
(`listed on the Sphinx web site <http://sphinx-doc.org/examples.html>`__)
230+
(`listed on the Sphinx web site <https://www.sphinx-doc.org/en/master/examples.html>`__)
231231
have adopted Sphinx as their documentation tool.
232232

233233
.. seealso::

Doc/whatsnew/3.2.rst

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@
5050
5151
This article explains the new features in Python 3.2 as compared to 3.1. It
5252
focuses on a few highlights and gives a few examples. For full details, see the
53-
`Misc/NEWS <https://hg.python.org/cpython/file/3.2/Misc/NEWS>`_ file.
53+
`Misc/NEWS
54+
<https://github.com/python/cpython/blob/076ca6c3c8df3030307e548d9be792ce3c1c6eea/Misc/NEWS>`_
55+
file.
5456

5557
.. seealso::
5658

@@ -969,10 +971,10 @@ sites do not finish before midnight, the barrier times-out and the ballots are
969971
sealed and deposited in a queue for later handling.
970972

971973
See `Barrier Synchronization Patterns
972-
<https://parlab.eecs.berkeley.edu/wiki/_media/patterns/paraplop_g1_3.pdf>`_ for
973-
more examples of how barriers can be used in parallel computing. Also, there is
974+
<http://osl.cs.illinois.edu/media/papers/karmani-2009-barrier_synchronization_pattern.pdf>`_
975+
for more examples of how barriers can be used in parallel computing. Also, there is
974976
a simple but thorough explanation of barriers in `The Little Book of Semaphores
975-
<http://greenteapress.com/semaphores/downey08semaphores.pdf>`_, *section 3.6*.
977+
<https://greenteapress.com/semaphores/LittleBookOfSemaphores.pdf>`_, *section 3.6*.
976978

977979
(Contributed by Kristján Valur Jónsson with an API review by Jeffrey Yasskin in
978980
:issue:`8777`.)
@@ -2512,9 +2514,9 @@ repository. This distributed version control system should make it easier for
25122514
members of the community to create and share external changesets. See
25132515
:pep:`385` for details.
25142516

2515-
To learn to use the new version control system, see the `tutorial by Joel
2516-
Spolsky <http://hginit.com>`_ or the `Guide to Mercurial Workflows
2517-
<https://www.mercurial-scm.org/guide>`_.
2517+
To learn to use the new version control system, see the `Quick Start
2518+
<https://www.mercurial-scm.org/wiki/QuickStart>`_ or the `Guide to
2519+
Mercurial Workflows <https://www.mercurial-scm.org/guide>`_.
25182520

25192521

25202522
Build and C API Changes

0 commit comments

Comments
 (0)