diff options
Diffstat (limited to 'Lib/asynchat.py')
-rw-r--r-- | Lib/asynchat.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Lib/asynchat.py b/Lib/asynchat.py index e081e67..bed797e 100644 --- a/Lib/asynchat.py +++ b/Lib/asynchat.py @@ -48,12 +48,11 @@ you - by calling your self.found_terminator() method. import asyncore from collections import deque -from warnings import warn -warn( - 'The asynchat module is deprecated and will be removed in Python 3.12. ' - 'The recommended replacement is asyncio', - DeprecationWarning, - stacklevel=2) +from warnings import _deprecated + +_DEPRECATION_MSG = ('The {name} module is deprecated and will be removed in ' + 'Python {remove}. The recommended replacement is asyncio') +_deprecated(__name__, _DEPRECATION_MSG, remove=(3, 12)) |