mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Closes #25910: fix dead and permanently redirected links in the docs. Thanks to SilentGhost for the patch.
This commit is contained in:
parent
06871ef2b3
commit
5d94134040
69 changed files with 253 additions and 256 deletions
|
@ -153,7 +153,7 @@ Mac OS X. Packages and documentation are available from http://www.wxpython.org.
|
|||
|
||||
*PyQt* is another popular cross-platform GUI toolkit that runs natively on Mac
|
||||
OS X. More information can be found at
|
||||
http://www.riverbankcomputing.co.uk/software/pyqt/intro.
|
||||
https://riverbankcomputing.com/software/pyqt/intro.
|
||||
|
||||
|
||||
Distributing Python Applications on the Mac
|
||||
|
|
|
@ -26,11 +26,11 @@ following links:
|
|||
|
||||
.. seealso::
|
||||
|
||||
http://www.debian.org/doc/manuals/maint-guide/first.en.html
|
||||
https://www.debian.org/doc/manuals/maint-guide/first.en.html
|
||||
for Debian users
|
||||
http://en.opensuse.org/Portal:Packaging
|
||||
https://en.opensuse.org/Portal:Packaging
|
||||
for OpenSuse users
|
||||
http://docs.fedoraproject.org/en-US/Fedora_Draft_Documentation/0.1/html/RPM_Guide/ch-creating-rpms.html
|
||||
https://docs.fedoraproject.org/en-US/Fedora_Draft_Documentation/0.1/html/RPM_Guide/ch-creating-rpms.html
|
||||
for Fedora users
|
||||
http://www.slackbook.org/html/package-management-making-packages.html
|
||||
for Slackware users
|
||||
|
@ -65,7 +65,7 @@ Building Python
|
|||
===============
|
||||
|
||||
If you want to compile CPython yourself, first thing you should do is get the
|
||||
`source <https://www.python.org/download/source/>`_. You can download either the
|
||||
`source <https://www.python.org/downloads/source/>`_. You can download either the
|
||||
latest release's source or just grab a fresh `clone
|
||||
<https://docs.python.org/devguide/setup.html#getting-the-source-code>`_. (If you want
|
||||
to contribute patches, you will need a clone.)
|
||||
|
|
|
@ -251,12 +251,12 @@ Check :pep:`11` for details on all unsupported platforms.
|
|||
release/python>`_, `Maintainer releases
|
||||
<http://www.tishler.net/jason/software/python/>`_)
|
||||
|
||||
See `Python for Windows <https://www.python.org/download/windows/>`_
|
||||
See `Python for Windows <https://www.python.org/downloads/windows/>`_
|
||||
for detailed information about platforms with pre-compiled installers.
|
||||
|
||||
.. seealso::
|
||||
|
||||
`Python on XP <http://www.richarddooling.com/index.php/2006/03/14/python-on-xp-7-minutes-to-hello-world/>`_
|
||||
`Python on XP <http://dooling.com/index.php/2006/03/14/python-on-xp-7-minutes-to-hello-world/>`_
|
||||
"7 Minutes to "Hello World!""
|
||||
by Richard Dooling, 2006
|
||||
|
||||
|
@ -279,10 +279,10 @@ Besides the standard CPython distribution, there are modified packages including
|
|||
additional functionality. The following is a list of popular versions and their
|
||||
key features:
|
||||
|
||||
`ActivePython <http://www.activestate.com/activepython/>`_
|
||||
`ActivePython <https://www.activestate.com/activepython/>`_
|
||||
Installer with multi-platform compatibility, documentation, PyWin32
|
||||
|
||||
`Anaconda <http://www.continuum.io/downloads/>`_
|
||||
`Anaconda <https://www.continuum.io/downloads/>`_
|
||||
Popular scientific modules (such as numpy, scipy and pandas) and the
|
||||
``conda`` package manager.
|
||||
|
||||
|
@ -352,16 +352,16 @@ System variables, you need non-restricted access to your machine
|
|||
|
||||
.. seealso::
|
||||
|
||||
http://support.microsoft.com/kb/100843
|
||||
https://support.microsoft.com/kb/100843
|
||||
Environment variables in Windows NT
|
||||
|
||||
http://technet.microsoft.com/en-us/library/cc754250.aspx
|
||||
https://technet.microsoft.com/en-us/library/cc754250.aspx
|
||||
The SET command, for temporarily modifying environment variables
|
||||
|
||||
http://technet.microsoft.com/en-us/library/cc755104.aspx
|
||||
https://technet.microsoft.com/en-us/library/cc755104.aspx
|
||||
The SETX command, for permanently modifying environment variables
|
||||
|
||||
http://support.microsoft.com/kb/310519
|
||||
https://support.microsoft.com/kb/310519
|
||||
How To Manage Environment Variables in Windows XP
|
||||
|
||||
http://www.chem.gla.ac.uk/~louis/software/faq/q1.html
|
||||
|
@ -781,18 +781,18 @@ The Windows-specific standard modules are documented in
|
|||
PyWin32
|
||||
-------
|
||||
|
||||
The `PyWin32 <http://python.net/crew/mhammond/win32/>`_ module by Mark Hammond
|
||||
The `PyWin32 <https://pypi.python.org/pypi/pywin32>`_ module by Mark Hammond
|
||||
is a collection of modules for advanced Windows-specific support. This includes
|
||||
utilities for:
|
||||
|
||||
* `Component Object Model <http://www.microsoft.com/com/>`_ (COM)
|
||||
* `Component Object Model <https://www.microsoft.com/com/>`_ (COM)
|
||||
* Win32 API calls
|
||||
* Registry
|
||||
* Event log
|
||||
* `Microsoft Foundation Classes <http://msdn.microsoft.com/en-us/library/fe1cf721%28VS.80%29.aspx>`_ (MFC)
|
||||
* `Microsoft Foundation Classes <https://msdn.microsoft.com/en-us/library/fe1cf721%28VS.80%29.aspx>`_ (MFC)
|
||||
user interfaces
|
||||
|
||||
`PythonWin <http://web.archive.org/web/20060524042422/
|
||||
`PythonWin <https://web.archive.org/web/20060524042422/
|
||||
https://www.python.org/windows/pythonwin/>`_ is a sample MFC application
|
||||
shipped with PyWin32. It is an embeddable IDE with a built-in debugger.
|
||||
|
||||
|
@ -831,7 +831,7 @@ Compiling Python on Windows
|
|||
===========================
|
||||
|
||||
If you want to compile CPython yourself, first thing you should do is get the
|
||||
`source <https://www.python.org/download/source/>`_. You can download either the
|
||||
`source <https://www.python.org/downloads/source/>`_. You can download either the
|
||||
latest release's source or just grab a fresh `checkout
|
||||
<https://docs.python.org/devguide/setup.html#getting-the-source-code>`_.
|
||||
|
||||
|
@ -874,7 +874,7 @@ dependants, such as Idle), pip and the Python documentation are not included.
|
|||
.. note::
|
||||
|
||||
The embedded distribution does not include the `Microsoft C Runtime
|
||||
<http://www.microsoft.com/en-us/download/details.aspx?id=48145>`_ and it is
|
||||
<https://www.microsoft.com/en-us/download/details.aspx?id=48145>`_ and it is
|
||||
the responsibility of the application installer to provide this. The
|
||||
runtime may have already been installed on a user's system previously or
|
||||
automatically via Windows Update, and can be detected by finding
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue