summaryrefslogtreecommitdiffstats
path: root/Doc/faq
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-03-03 19:56:50 (GMT)
committerGitHub <noreply@github.com>2024-03-03 19:56:50 (GMT)
commit722b9cf9fb9504bac082f474f0756da63a3674fc (patch)
tree1659b4d137c1374688b7b73b0f517dce382ceeff /Doc/faq
parente95e837541577f03ebaa56de2b1d4b6e399218c2 (diff)
downloadcpython-722b9cf9fb9504bac082f474f0756da63a3674fc.zip
cpython-722b9cf9fb9504bac082f474f0756da63a3674fc.tar.gz
cpython-722b9cf9fb9504bac082f474f0756da63a3674fc.tar.bz2
[3.12] gh-116010: Remove link to deprecated PEP 6 in FAQ guide (GH-116246) (#116286)
Co-authored-by: Iman Tabrizian <iman.tabrizian@gmail.com> Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Diffstat (limited to 'Doc/faq')
-rw-r--r--Doc/faq/general.rst8
1 files changed, 5 insertions, 3 deletions
diff --git a/Doc/faq/general.rst b/Doc/faq/general.rst
index 8727332..ec7c289 100644
--- a/Doc/faq/general.rst
+++ b/Doc/faq/general.rst
@@ -133,8 +133,6 @@ Python versions are numbered "A.B.C" or "A.B":
changes.
* *C* is the micro version number -- it is incremented for each bugfix release.
-See :pep:`6` for more information about bugfix releases.
-
Not all releases are bugfix releases. In the run-up to a new feature 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;
@@ -157,7 +155,11 @@ unreleased versions, built directly from the CPython development repository. In
practice, after a final minor release is made, the version is incremented to the
next minor version, which becomes the "a0" version, e.g. "2.4a0".
-See also the documentation for :data:`sys.version`, :data:`sys.hexversion`, and
+See the `Developer's Guide
+<https://devguide.python.org/developer-workflow/development-cycle/>`__
+for more information about the development cycle, and
+:pep:`387` to learn more about Python's backward compatibility policy. See also
+the documentation for :data:`sys.version`, :data:`sys.hexversion`, and
:data:`sys.version_info`.