Skip to content

Commit 9fdc8d8

Browse files
Commit
1 parent 5f91d5d commit 9fdc8d8

File tree

12 files changed

+16
-22
lines changed

12 files changed

+16
-22
lines changed

Doc/c-api/complex.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ rather than dereferencing them through pointers.
130130
131131
Please note, that these functions are :term:`soft deprecated` since Python
132132
3.15. Avoid using this API in a new code to do complex arithmetic: either use
133-
the `Number Protocol <number>`_ API or use native complex types, like
133+
the :ref:`Number Protocol <number>` API or use native complex types, like
134134
:c:expr:`double complex`.
135135
136136

Doc/library/collections.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ or subtracting from an empty counter.
441441

442442
* Wikipedia entry for `Multisets <https://en.wikipedia.org/wiki/Multiset>`_.
443443

444-
* `C++ multisets <http://www.java2s.com/Tutorial/Cpp/0380__set-multiset/Catalog0380__set-multiset.htm>`_
444+
* `C++ multisets <https://web.archive.org/web/20210108001926/http://www.java2s.com/Tutorial/Cpp/0380__set-multiset/Catalog0380__set-multiset.htm>`_
445445
tutorial with examples.
446446

447447
* For mathematical operations on multisets and their use cases, see

Doc/library/profile.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
The Python Profilers
55
********************
66

7-
**Source code:** :source:`Lib/profile.py`, :source:`Lib/pstats.py`, and :source:`Lib/profile/sample.py`
7+
**Source code:** :source:`Lib/profile.py`, :source:`Lib/pstats.py`, and :source:`Lib/profiling/sampling/`
88

99
--------------
1010

Doc/library/secrets.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Other functions
132132
:term:`bytes-like objects <bytes-like object>`
133133
*a* and *b* are equal, otherwise ``False``,
134134
using a "constant-time compare" to reduce the risk of
135-
`timing attacks <https://codahale.com/a-lesson-in-timing-attacks/>`_.
135+
`timing attacks <https://en.wikipedia.org/wiki/Timing_attack>`_.
136136
See :func:`hmac.compare_digest` for additional details.
137137

138138

Doc/library/string.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.. module:: string
55
:synopsis: Common string operations.
66

7-
**Source code:** :source:`Lib/string.py`
7+
**Source code:** :source:`Lib/string/`
88

99
--------------
1010

Doc/library/tkinter.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ wherever the image was used.
996996

997997
.. seealso::
998998

999-
The `Pillow <https://python-pillow.org/>`_ package adds support for
999+
The `Pillow <https://python-pillow.github.io/>`_ package adds support for
10001000
formats such as BMP, JPEG, TIFF, and WebP, among others.
10011001

10021002
.. _tkinter-file-handlers:

Doc/using/configure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ See :source:`Mac/README.rst`.
10891089
iOS Options
10901090
-----------
10911091

1092-
See :source:`iOS/README.rst`.
1092+
See :source:`Apple/iOS/README.md`.
10931093

10941094
.. option:: --enable-framework=INSTALLDIR
10951095

Doc/using/ios.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ modules in your app, some additional steps will be required:
266266
Testing a Python package
267267
------------------------
268268

269-
The CPython source tree contains :source:`a testbed project <Apple/iOS/testbed>` that
269+
The CPython source tree contains :source:`a testbed project <Apple/testbed>` that
270270
is used to run the CPython test suite on the iOS simulator. This testbed can also
271271
be used as a testbed project for running your Python library's test suite on iOS.
272272

Doc/whatsnew/2.3.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1864,10 +1864,8 @@ and bundle it with the source of your extension.
18641864

18651865
.. seealso::
18661866

1867-
https://hg.python.org/cpython/file/default/Objects/obmalloc.c
1868-
For the full details of the pymalloc implementation, see the comments at
1869-
the top of the file :file:`Objects/obmalloc.c` in the Python source code.
1870-
The above link points to the file within the python.org SVN browser.
1867+
For the full details of the pymalloc implementation, see the comments at
1868+
the top of the :source:`Objects/obmalloc.c` file in the Python source code.
18711869

18721870
.. ======================================================================
18731871

Doc/whatsnew/2.6.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,7 @@ Hosting of the Python bug tracker is kindly provided by
173173
`Upfront Systems <https://upfrontsoftware.co.za>`__
174174
of Stellenbosch, South Africa. Martin von Löwis put a
175175
lot of effort into importing existing bugs and patches from
176-
SourceForge; his scripts for this import operation are at
177-
``https://svn.python.org/view/tracker/importer/`` and may be useful to
176+
SourceForge; his scripts for this import operation may be useful to
178177
other projects wishing to move from SourceForge to Roundup.
179178

180179
.. seealso::
@@ -188,9 +187,6 @@ other projects wishing to move from SourceForge to Roundup.
188187
https://roundup.sourceforge.io/
189188
Roundup downloads and documentation.
190189

191-
https://svn.python.org/view/tracker/importer/
192-
Martin von Löwis's conversion scripts.
193-
194190
New Documentation Format: reStructuredText Using Sphinx
195191
-----------------------------------------------------------
196192

0 commit comments

Comments
 (0)