diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-06-16 08:56:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-16 08:56:32 (GMT) |
commit | 1eeb2e62d0a7d37fea192df47d7a8ec1227bef6d (patch) | |
tree | 4fd067a09f81d70a985fad3697f6e60168165777 /Doc/faq | |
parent | 6f0f27eba0f41375ae12a37c6cc8a278526917a6 (diff) | |
download | cpython-1eeb2e62d0a7d37fea192df47d7a8ec1227bef6d.zip cpython-1eeb2e62d0a7d37fea192df47d7a8ec1227bef6d.tar.gz cpython-1eeb2e62d0a7d37fea192df47d7a8ec1227bef6d.tar.bz2 |
[3.12] gh-105844: Consistently use 'minor version' for X.Y versions (GH-105851) (#105853)
(cherry picked from commit 0bffe1acd78069ea21f6b1347bec9cc9747342cb)
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Diffstat (limited to 'Doc/faq')
-rw-r--r-- | Doc/faq/general.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/general.rst b/Doc/faq/general.rst index a9b2622..298ce11 100644 --- a/Doc/faq/general.rst +++ b/Doc/faq/general.rst @@ -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 |