gh-91217: deprecate telnetlib (GH-91958)

This commit is contained in:
Brett Cannon 2022-04-26 10:45:08 -07:00 committed by GitHub
parent 4153f2cbcb
commit 1af871eeee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 2 deletions

View file

@ -37,6 +37,9 @@ import sys
import socket
import selectors
from time import monotonic as _time
import warnings
warnings._deprecated(__name__, remove=(3, 13))
__all__ = ["Telnet"]