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

Skip to content

Commit 90be733

Browse files
Issue #25910: Fixed dead links in the docs.
1 parent 864b63c commit 90be733

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

Doc/faq/gui.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Qt
5959

6060
There are bindings available for the Qt toolkit (using either `PyQt
6161
<https://riverbankcomputing.com/software/pyqt/intro>`_ or `PySide
62-
<https://wiki.qt.io/PySide>`_) and for KDE (`PyKDE <https://techbase.kde.org/Development/Languages/Python>`__).
62+
<https://wiki.qt.io/PySide>`_) and for KDE (`PyKDE4 <https://techbase.kde.org/Languages/Python/Using_PyKDE_4>`__).
6363
PyQt is currently more mature than PySide, but you must buy a PyQt license from
6464
`Riverbank Computing <https://www.riverbankcomputing.com/commercial/license-faq>`_
6565
if you want to write proprietary applications. PySide is free for all applications.

Doc/howto/logging-cookbook.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1316,7 +1316,7 @@ An example dictionary-based configuration
13161316
-----------------------------------------
13171317

13181318
Below is an example of a logging configuration dictionary - it's taken from
1319-
the `documentation on the Django project <https://docs.djangoproject.com/en/1.4/topics/logging/#configuring-logging>`_.
1319+
the `documentation on the Django project <https://docs.djangoproject.com/en/1.9/topics/logging/#configuring-logging>`_.
13201320
This dictionary is passed to :func:`~config.dictConfig` to put the configuration into effect::
13211321

13221322
LOGGING = {
@@ -1372,7 +1372,7 @@ This dictionary is passed to :func:`~config.dictConfig` to put the configuration
13721372
}
13731373

13741374
For more information about this configuration, you can see the `relevant
1375-
section <https://docs.djangoproject.com/en/1.6/topics/logging/#configuring-logging>`_
1375+
section <https://docs.djangoproject.com/en/1.9/topics/logging/#configuring-logging>`_
13761376
of the Django documentation.
13771377

13781378
.. _cookbook-rotator-namer:

Doc/whatsnew/2.1.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ of the more notable changes are:
731731
...
732732

733733
For a fuller discussion of the line I/O changes, see the python-dev summary for
734-
January 1-15, 2001 at https://www.python.org/dev/summary/2001-01-1/.
734+
January 1-15, 2001 at https://mail.python.org/pipermail/python-dev/2001-January/.
735735

736736
* A new method, :meth:`popitem`, was added to dictionaries to enable
737737
destructively iterating through the contents of a dictionary; this can be faster

Doc/whatsnew/2.2.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ up irregularities and dark corners of the language design.
2424
This article doesn't attempt to provide a complete specification of the new
2525
features, but instead provides a convenient overview. For full details, you
2626
should refer to the documentation for Python 2.2, such as the `Python Library
27-
Reference <https://www.python.org/doc/2.2/lib/lib.html>`_ and the `Python
28-
Reference Manual <https://www.python.org/doc/2.2/ref/ref.html>`_. If you want to
27+
Reference <https://docs.python.org/2.2/lib/lib.html>`_ and the `Python
28+
Reference Manual <https://docs.python.org/2.2/ref/ref.html>`_. If you want to
2929
understand the complete implementation and design rationale for a change, refer
3030
to the PEP for a particular new feature.
3131

@@ -395,7 +395,7 @@ This section has just been a quick overview of the new features, giving enough
395395
of an explanation to start you programming, but many details have been
396396
simplified or ignored. Where should you go to get a more complete picture?
397397

398-
https://www.python.org/2.2/descrintro.html is a lengthy tutorial introduction to
398+
https://docs.python.org/dev/howto/descriptor.html is a lengthy tutorial introduction to
399399
the descriptor features, written by Guido van Rossum. If my description has
400400
whetted your appetite, go read this tutorial next, because it goes into much
401401
more detail about the new features while still remaining quite easy to read.

Doc/whatsnew/2.3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1858,7 +1858,7 @@ and bundle it with the source of your extension.
18581858

18591859
.. seealso::
18601860

1861-
https://svn.python.org/view/python/trunk/Objects/obmalloc.c
1861+
https://hg.python.org/cpython/file/default/Objects/obmalloc.c
18621862
For the full details of the pymalloc implementation, see the comments at
18631863
the top of the file :file:`Objects/obmalloc.c` in the Python source code.
18641864
The above link points to the file within the python.org SVN browser.

0 commit comments

Comments
 (0)