summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-10-12 12:06:07 (GMT)
committerGitHub <noreply@github.com>2018-10-12 12:06:07 (GMT)
commitd4ed8809ddfaa23fe5edf2987c03afc32f5576c0 (patch)
treebaf6a2f7fef8656281c86af03cb365c473c0c7f9
parent7a98e302c37781f9c6448a28bc70bff18b7e2862 (diff)
downloadcpython-d4ed8809ddfaa23fe5edf2987c03afc32f5576c0.zip
cpython-d4ed8809ddfaa23fe5edf2987c03afc32f5576c0.tar.gz
cpython-d4ed8809ddfaa23fe5edf2987c03afc32f5576c0.tar.bz2
bpo-34203: FAQ now recommends python 3.x over 2.x (GH-9796)
(cherry picked from commit 4505f65ae7807f2420ed14d4f060e7cd5c4039d3) Co-authored-by: Gus Goulart <augusto@goulart.me>
-rw-r--r--Doc/faq/general.rst14
1 files changed, 8 insertions, 6 deletions
diff --git a/Doc/faq/general.rst b/Doc/faq/general.rst
index 9d3e199..90fd69e 100644
--- a/Doc/faq/general.rst
+++ b/Doc/faq/general.rst
@@ -306,17 +306,19 @@ usually around 18 months between major releases.
The developers issue "bugfix" releases of older versions, so the stability of
existing releases gradually improves. Bugfix releases, indicated by a third
-component of the version number (e.g. 2.5.3, 2.6.2), are managed for stability;
+component of the version number (e.g. 3.5.3, 3.6.2), are managed for stability;
only fixes for known problems are included in a bugfix release, and it's
guaranteed that interfaces will remain the same throughout a series of bugfix
releases.
The latest stable releases can always be found on the `Python download page
-<https://www.python.org/downloads/>`_. There are two recommended production-ready
-versions at this point in time, because at the moment there are two branches of
-stable releases: 2.x and 3.x. Python 3.x may be less useful than 2.x, since
-currently there is more third party software available for Python 2 than for
-Python 3. Python 2 code will generally not run unchanged in Python 3.
+<https://www.python.org/downloads/>`_. There are two production-ready version
+of Python: 2.x and 3.x, but the recommended one at this times is Python 3.x.
+Although Python 2.x is still widely used, `it will not be
+maintained after January 1, 2020 <https://www.python.org/dev/peps/pep-0373/>`_.
+Python 2.x was known for having more third-party libraries available, however,
+by the time of this writing, most of the widely used libraries support Python 3.x,
+and some are even dropping the Python 2.x support.
How many people are using Python?