]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-105844: Consistently use 'minor version' for X.Y versions (GH-105851) ...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 16 Jun 2023 08:56:32 +0000 (01:56 -0700)
committerGitHub <noreply@github.com>
Fri, 16 Jun 2023 08:56:32 +0000 (10:56 +0200)
(cherry picked from commit 0bffe1acd78069ea21f6b1347bec9cc9747342cb)

Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Doc/faq/general.rst
Doc/install/index.rst

index a9b2622e02ef3b01915d22e365fe5ae903aefa21..298ce111698a65143ce6c0831d25743829c0d2c4 100644 (file)
@@ -135,7 +135,7 @@ Python versions are numbered "A.B.C" or "A.B":
 
 See :pep:`6` for more information about bugfix releases.
 
-Not all releases are bugfix releases.  In the run-up to a new major release, a
+Not all releases are bugfix releases.  In the run-up to a new minor release, a
 series of development releases are made, denoted as alpha, beta, or release
 candidate.  Alphas are early releases in which interfaces aren't yet finalized;
 it's not unexpected to see an interface change between two alpha releases.
@@ -297,7 +297,7 @@ How stable is Python?
 
 Very stable.  New, stable releases have been coming out roughly every 6 to 18
 months since 1991, and this seems likely to continue.  As of version 3.9,
-Python will have a major new release every 12 months (:pep:`602`).
+Python will have a minor new release every 12 months (:pep:`602`).
 
 The developers issue "bugfix" releases of older versions, so the stability of
 existing releases gradually improves.  Bugfix releases, indicated by a third
index ab581d785ef7f041f83466f573811472af78b26d..beb34f0cf21b22e2ec7ec9453ff052135a9d9045 100644 (file)
@@ -696,7 +696,7 @@ is supplied to suppress this behaviour.  So you could simply edit
    import sys
    sys.path.append('/www/python/')
 
-However, if you reinstall the same major version of Python (perhaps when
+However, if you reinstall the same minor version of Python (perhaps when
 upgrading from 2.2 to 2.2.2, for example) :file:`site.py` will be overwritten by
 the stock version.  You'd have to remember that it was modified and save a copy
 before doing the installation.