summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-04-24 00:32:24 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-04-24 00:32:24 (GMT)
commit8d8221f0d674ea032337a82d1ad1d0d146510390 (patch)
tree81da342bdff869dcbf2b9d1466a1d553e4bc5aec /Lib/test
parent2ec1bee1b30a14a2fc8272e3bf304186d0474fe3 (diff)
downloadcpython-8d8221f0d674ea032337a82d1ad1d0d146510390.zip
cpython-8d8221f0d674ea032337a82d1ad1d0d146510390.tar.gz
cpython-8d8221f0d674ea032337a82d1ad1d0d146510390.tar.bz2
Issue #26041: Remove "will be removed in Python 3.7" from description messages
We will keep platform.dist() and platform.linux_distribution() to make porting from Python 2 easier. Patch by Kumaripaba Miyurusara Athukorala.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_platform.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/test/test_platform.py b/Lib/test/test_platform.py
index 3ea71f1..3e53212 100644
--- a/Lib/test/test_platform.py
+++ b/Lib/test/test_platform.py
@@ -333,16 +333,14 @@ class DeprecationTest(unittest.TestCase):
platform.dist()
self.assertEqual(str(cm.warning),
'dist() and linux_distribution() functions are '
- 'deprecated in Python 3.5 and will be removed in '
- 'Python 3.7')
+ 'deprecated in Python 3.5')
def test_linux_distribution_deprecation(self):
with self.assertWarns(PendingDeprecationWarning) as cm:
platform.linux_distribution()
self.assertEqual(str(cm.warning),
'dist() and linux_distribution() functions are '
- 'deprecated in Python 3.5 and will be removed in '
- 'Python 3.7')
+ 'deprecated in Python 3.5')
if __name__ == '__main__':
unittest.main()