diff options
author | Matthias Bussonnier <bussonniermatthias@gmail.com> | 2018-05-15 15:17:00 (GMT) |
---|---|---|
committer | Petr Viktorin <encukou@gmail.com> | 2018-05-15 15:17:00 (GMT) |
commit | 9eb40bc38de83e6ad3fad1931bba1cd36ae88c24 (patch) | |
tree | 3c7583253c8dc3c26ea358bf2ec69efde78d9266 /Doc | |
parent | 01abc6ec3a61769c55ee86834a432fb97801d28f (diff) | |
download | cpython-9eb40bc38de83e6ad3fad1931bba1cd36ae88c24.zip cpython-9eb40bc38de83e6ad3fad1931bba1cd36ae88c24.tar.gz cpython-9eb40bc38de83e6ad3fad1931bba1cd36ae88c24.tar.bz2 |
bpo-28167: bump platform.linux_distribution removal to 3.8 (GH-6669)
Also bump PendingDeprecationWarning to DeprecationWarning.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/platform.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst index eea0abb..f5cb52c 100644 --- a/Doc/library/platform.rst +++ b/Doc/library/platform.rst @@ -248,7 +248,8 @@ Unix Platforms This is another name for :func:`linux_distribution`. - .. deprecated-removed:: 3.5 3.7 + .. deprecated-removed:: 3.5 3.8 + See alternative like the `distro <https://pypi.org/project/distro>`_ package. .. function:: linux_distribution(distname='', version='', id='', supported_dists=('SuSE','debian','redhat','mandrake',...), full_distribution_name=1) @@ -266,7 +267,8 @@ Unix Platforms parameters. ``id`` is the item in parentheses after the version number. It is usually the version codename. - .. deprecated-removed:: 3.5 3.7 + .. deprecated-removed:: 3.5 3.8 + See alternative like the `distro <https://pypi.org/project/distro>`_ package. .. function:: libc_ver(executable=sys.executable, lib='', version='', chunksize=2048) |