[Python-checkins] Fix a typo in a deprecation warning (GH-24423)

corona10 webhook-mailer at python.org
Fri Feb 5 08:09:45 EST 2021


https://github.com/python/cpython/commit/4bb332cfd1f9740b1e31d2d8b8bf1bedca3439ff
commit: 4bb332cfd1f9740b1e31d2d8b8bf1bedca3439ff
branch: master
author: Zackery Spytz <zspytz at gmail.com>
committer: corona10 <donghee.na92 at gmail.com>
date: 2021-02-05T22:09:17+09:00
summary:

Fix a typo in a deprecation warning (GH-24423)

files:
M Lib/distutils/__init__.py

diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py
index 5ddb95923809c..7b2b059b83dad 100644
--- a/Lib/distutils/__init__.py
+++ b/Lib/distutils/__init__.py
@@ -13,7 +13,7 @@
 
 __version__ = sys.version[:sys.version.index(' ')]
 
-warnings.warn("The distutils package deprecated and slated for "
+warnings.warn("The distutils package is deprecated and slated for "
               "removal in Python 3.12. Use setuptools or check "
               "PEP 632 for potential alternatives",
               DeprecationWarning)



More information about the Python-checkins mailing list