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

Skip to content

Commit b7354a6

Browse files
committed
Fixing broken links in doc, part 4: some more breaks and redirects
1 parent 0ef4966 commit b7354a6

31 files changed

Lines changed: 42 additions & 45 deletions

Doc/about.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ About these documents
66
These documents are generated from `reStructuredText`_ sources by `Sphinx`_, a
77
document processor specifically written for the Python documentation.
88

9-
.. _reStructuredText: http://docutils.sf.net/rst.html
9+
.. _reStructuredText: http://docutils.sourceforge.net/rst.html
1010
.. _Sphinx: http://sphinx-doc.org/
1111

1212
.. In the online version of these documents, you can submit comments and suggest
@@ -21,7 +21,7 @@ Many thanks go to:
2121

2222
* Fred L. Drake, Jr., the creator of the original Python documentation toolset
2323
and writer of much of the content;
24-
* the `Docutils <http://docutils.sf.net/>`_ project for creating
24+
* the `Docutils <http://docutils.sourceforge.net/>`_ project for creating
2525
reStructuredText and the Docutils suite;
2626
* Fredrik Lundh for his `Alternative Python Reference
2727
<http://effbot.org/zone/pyref.htm>`_ project from which Sphinx got many good

Doc/distutils/setupscript.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ Notes:
628628

629629
'long string'
630630
Multiple lines of plain text in reStructuredText format (see
631-
http://docutils.sf.net/).
631+
http://docutils.sourceforge.net/).
632632

633633
'list of strings'
634634
See below.

Doc/faq/extending.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ to learn Python's C API.
5050
If you need to interface to some C or C++ library for which no Python extension
5151
currently exists, you can try wrapping the library's data types and functions
5252
with a tool such as `SWIG <http://www.swig.org>`_. `SIP
53-
<http://www.riverbankcomputing.co.uk/software/sip/>`__, `CXX
53+
<http://www.riverbankcomputing.co.uk/software/sip/intro>`__, `CXX
5454
<http://cxx.sourceforge.net/>`_ `Boost
5555
<http://www.boost.org/libs/python/doc/index.html>`_, or `Weave
5656
<http://docs.scipy.org/doc/scipy-dev/reference/tutorial/weave.html>`_ are also

Doc/faq/general.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ commercial use, to sell copies of Python in source or binary form (modified or
5353
unmodified), or to sell products that incorporate Python in some form. We would
5454
still like to know about all commercial use of Python, of course.
5555

56-
See `the PSF license page <https://www.python.org/psf/license/>`_ to find further
56+
See `the PSF license page <https://docs.python.org/3/license/>`_ to find further
5757
explanations and a link to the full text of the license.
5858

5959
The Python logo is trademarked, and in certain cases permission is required to
@@ -178,8 +178,8 @@ How do I get documentation on Python?
178178
.. XXX mention py3k
179179
180180
The standard documentation for the current stable version of Python is available
181-
at https://docs.python.org/. PDF, plain text, and downloadable HTML versions are
182-
also available at https://docs.python.org/download.html.
181+
at https://docs.python.org/3/. PDF, plain text, and downloadable HTML versions are
182+
also available at https://docs.python.org/3/download.html.
183183

184184
The documentation is written in reStructuredText and processed by `the Sphinx
185185
documentation tool <http://sphinx-doc.org/>`__. The reStructuredText source for
@@ -200,7 +200,7 @@ Is there a newsgroup or mailing list devoted to Python?
200200
-------------------------------------------------------
201201

202202
There is a newsgroup, :newsgroup:`comp.lang.python`, and a mailing list,
203-
`python-list <http://mail.python.org/mailman/listinfo/python-list>`_. The
203+
`python-list <https://mail.python.org/mailman/listinfo/python-list>`_. The
204204
newsgroup and mailing list are gatewayed into each other -- if you can read news
205205
it's unnecessary to subscribe to the mailing list.
206206
:newsgroup:`comp.lang.python` is high-traffic, receiving hundreds of postings
@@ -209,7 +209,7 @@ every day, and Usenet readers are often more able to cope with this volume.
209209
Announcements of new software releases and events can be found in
210210
comp.lang.python.announce, a low-traffic moderated list that receives about five
211211
postings per day. It's available as `the python-announce mailing list
212-
<http://mail.python.org/mailman/listinfo/python-announce-list>`_.
212+
<https://mail.python.org/mailman/listinfo/python-announce-list>`_.
213213

214214
More info about other mailing lists and newsgroups
215215
can be found at https://www.python.org/community/lists/.

Doc/faq/gui.rst

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

6060
There are bindings available for the Qt toolkit (using either `PyQt
61-
<http://www.riverbankcomputing.co.uk/software/pyqt/>`_ or `PySide
61+
<http://www.riverbankcomputing.co.uk/software/pyqt/intro>`_ or `PySide
6262
<http://www.pyside.org/>`_) and for KDE (`PyKDE <https://techbase.kde.org/Development/Languages/Python>`__).
6363
PyQt is currently more mature than PySide, but you must buy a PyQt license from
6464
`Riverbank Computing <http://www.riverbankcomputing.co.uk/software/pyqt/license>`_

Doc/faq/library.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ How do I create documentation from doc strings?
181181

182182
The :mod:`pydoc` module can create HTML from the doc strings in your Python
183183
source code. An alternative for creating API documentation purely from
184-
docstrings is `epydoc <http://epydoc.sf.net/>`_. `Sphinx
184+
docstrings is `epydoc <http://epydoc.sourceforge.net/>`_. `Sphinx
185185
<http://sphinx-doc.org>`_ can also include docstring content.
186186

187187

@@ -773,7 +773,7 @@ socket to select to check if it's writable.
773773
.. note::
774774
The :mod:`asyncore` module presents a framework-like approach to the problem
775775
of writing non-blocking networking code.
776-
The third-party `Twisted <http://twistedmatrix.com/>`_ library is
776+
The third-party `Twisted <https://twistedmatrix.com/trac/>`_ library is
777777
a popular and feature-rich alternative.
778778

779779

Doc/faq/programming.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Yes.
6161

6262
PyChecker is a static analysis tool that finds bugs in Python source code and
6363
warns about code complexity and style. You can get PyChecker from
64-
http://pychecker.sf.net.
64+
http://pychecker.sourceforge.net/.
6565

6666
`Pylint <http://www.logilab.org/projects/pylint>`_ is another tool that checks
6767
if a module satisfies a coding standard, and also makes it possible to write

Doc/howto/cporting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,6 @@ Other options
252252
=============
253253

254254
If you are writing a new extension module, you might consider `Cython
255-
<http://www.cython.org>`_. It translates a Python-like language to C. The
255+
<http://cython.org/>`_. It translates a Python-like language to C. The
256256
extension modules it creates are compatible with Python 3 and Python 2.
257257

Doc/howto/pyporting.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -609,11 +609,10 @@ please email the python-porting_ mailing list.
609609
.. _future: http://python-future.org/
610610
.. _modernize: https://github.com/mitsuhiko/python-modernize
611611
.. _Porting to Python 3: http://python3porting.com/
612-
.. _PyPI: https://pypi.python.org/
612+
.. _PyPI: https://pypi.python.org/pypi
613613
.. _Python 3 Packages: https://pypi.python.org/pypi?:action=browse&c=533&show=all
614614
.. _Python 3 Q & A: http://ncoghlan-devs-python-notes.readthedocs.org/en/latest/python3/questions_and_answers.html
615615
.. _python-porting: https://mail.python.org/mailman/listinfo/python-porting
616616
.. _six: https://pypi.python.org/pypi/six
617617
.. _tox: https://pypi.python.org/pypi/tox
618618
.. _trove classifiers: https://pypi.python.org/pypi?%3Aaction=list_classifiers
619-

Doc/howto/webservers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ Popular template engines include:
515515

516516
* `Mako <http://www.makotemplates.org/>`_
517517
* `Genshi <http://genshi.edgewall.org/>`_
518-
* `Jinja <http://jinja.pocoo.org/2/>`_
518+
* `Jinja <http://jinja.pocoo.org/>`_
519519

520520
.. seealso::
521521

0 commit comments

Comments
 (0)