summaryrefslogtreecommitdiff
path: root/Lib/platform.py
diff options
context:
space:
mode:
authorMatthias Bussonnier <bussonniermatthias@gmail.com>2018-05-15 08:17:00 -0700
committerPetr Viktorin <encukou@gmail.com>2018-05-15 11:17:00 -0400
commit9eb40bc38de83e6ad3fad1931bba1cd36ae88c24 (patch)
tree3c7583253c8dc3c26ea358bf2ec69efde78d9266 /Lib/platform.py
parent01abc6ec3a61769c55ee86834a432fb97801d28f (diff)
downloadcpython-git-9eb40bc38de83e6ad3fad1931bba1cd36ae88c24.tar.gz
bpo-28167: bump platform.linux_distribution removal to 3.8 (GH-6669)
Also bump PendingDeprecationWarning to DeprecationWarning.
Diffstat (limited to 'Lib/platform.py')
-rwxr-xr-xLib/platform.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/platform.py b/Lib/platform.py
index dc981ec144..20f9817f4f 100755
--- a/Lib/platform.py
+++ b/Lib/platform.py
@@ -302,7 +302,7 @@ def linux_distribution(distname='', version='', id='',
full_distribution_name=1):
import warnings
warnings.warn("dist() and linux_distribution() functions are deprecated "
- "in Python 3.5", PendingDeprecationWarning, stacklevel=2)
+ "in Python 3.5", DeprecationWarning, stacklevel=2)
return _linux_distribution(distname, version, id, supported_dists,
full_distribution_name)
@@ -376,7 +376,7 @@ def dist(distname='', version='', id='',
"""
import warnings
warnings.warn("dist() and linux_distribution() functions are deprecated "
- "in Python 3.5", PendingDeprecationWarning, stacklevel=2)
+ "in Python 3.5", DeprecationWarning, stacklevel=2)
return _linux_distribution(distname, version, id,
supported_dists=supported_dists,
full_distribution_name=0)
@@ -1345,7 +1345,7 @@ def platform(aliased=0, terse=0):
'ignore',
r'dist\(\) and linux_distribution\(\) '
'functions are deprecated .*',
- PendingDeprecationWarning,
+ DeprecationWarning,
)
distname, distversion, distid = dist('')
if distname and not terse: