Skip to content

Commit e4481ea

Browse files
committed
bpo-3073: Remove .html from urls. Update url to https
Fix url endings by removing .html and update urls to use https.
1 parent e5f806e commit e4481ea

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

Doc/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ available <https://docs.python.org/dev/download.html>`_.
77

88
Documentation on authoring Python documentation, including information about
99
both style and markup, is available in the "`Documenting Python
10-
<https://devguide.python.org/documenting.html>`_" chapter of the
10+
<https://devguide.python.org/documenting/>`_" chapter of the
1111
developers guide.
1212

1313

Doc/faq/general.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ several useful pieces of freely distributable software. The source will compile
167167
and run out of the box on most UNIX platforms.
168168

169169
Consult the `Getting Started section of the Python Developer's Guide
170-
<https://devguide.python.org/setup.html>`__ for more
170+
<https://devguide.python.org/setup/>`__ for more
171171
information on getting the source code and compiling it.
172172

173173

Doc/using/unix.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Building Python
6767
If you want to compile CPython yourself, first thing you should do is get the
6868
`source <https://www.python.org/downloads/source/>`_. You can download either the
6969
latest release's source or just grab a fresh `clone
70-
<https://devguide.python.org/setup.html#getting-the-source-code>`_. (If you want
70+
<https://devguide.python.org/setup/#getting-the-source-code>`_. (If you want
7171
to contribute patches, you will need a clone.)
7272

7373
The build process consists in the usual ::

Doc/using/windows.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ Compiling Python on Windows
896896
If you want to compile CPython yourself, first thing you should do is get the
897897
`source <https://www.python.org/downloads/source/>`_. You can download either the
898898
latest release's source or just grab a fresh `checkout
899-
<https://devguide.python.org/setup.html#getting-the-source-code>`_.
899+
<https://devguide.python.org/setup/#getting-the-source-code>`_.
900900

901901
The source tree contains a build solution and project files for Microsoft
902902
Visual Studio 2015, which is the compiler used to build the official Python

Doc/whatsnew/2.6.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ have adopted Sphinx as their documentation tool.
232232

233233
.. seealso::
234234

235-
`Documenting Python <https://devguide.python.org/documenting.html>`__
235+
`Documenting Python <https://devguide.python.org/documenting/>`__
236236
Describes how to write for Python's documentation.
237237

238238
`Sphinx <http://sphinx-doc.org/>`__

Doc/whatsnew/3.4.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1960,7 +1960,7 @@ Other Improvements
19601960
``.py`` extension. (Contributed by Paul Moore in :issue:`18569`.)
19611961

19621962
* A new ``make`` target `coverage-report
1963-
<https://devguide.python.org/coverage.html#measuring-coverage-of-c-code-with-gcov-and-lcov>`_
1963+
<https://devguide.python.org/coverage/#measuring-coverage-of-c-code-with-gcov-and-lcov>`_
19641964
will build python, run the test suite, and generate an HTML coverage report
19651965
for the C codebase using ``gcov`` and `lcov
19661966
<http://ltp.sourceforge.net/coverage/lcov.php>`_.

Grammar/Grammar

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Grammar for Python
22

33
# NOTE WELL: You should also follow all the steps listed at
4-
# https://devguide.python.org/grammar.html
4+
# https://devguide.python.org/grammar/
55

66
# Start symbols for the grammar:
77
# single_input is a single interactive statement;

Mac/README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ In general, universal builds depend on specific features provided by the
9898
Apple-supplied compilers and other build tools included in Apple's Xcode
9999
development tools. You should install Xcode and the command line tools
100100
component appropriate for the OS X release you are running on. See the
101-
Python Developer's Guide (http://devguide.python.org/setup.html)
101+
Python Developer's Guide (https://devguide.python.org/setup/)
102102
for more information.
103103

104104
2.1 Flavors of universal binaries
@@ -355,4 +355,4 @@ Resources
355355

356356
* http://www.python.org/community/sigs/current/pythonmac-sig/
357357

358-
* http://devguide.python.org/
358+
* https://devguide.python.org/

0 commit comments

Comments
 (0)