diff options
Diffstat (limited to 'cherrypy/lib/httpauth.py')
-rw-r--r-- | cherrypy/lib/httpauth.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cherrypy/lib/httpauth.py b/cherrypy/lib/httpauth.py index e3a9b85e..88797b51 100644 --- a/cherrypy/lib/httpauth.py +++ b/cherrypy/lib/httpauth.py @@ -24,6 +24,7 @@ SUPPORTED_QOP - list of supported 'Digest' 'qop'. """ import time +import warnings from hashlib import md5 from six.moves.urllib.request import parse_http_list, parse_keqv_list @@ -33,6 +34,12 @@ from cherrypy._cpcompat import ( ) +warnings.warn( + "`httpauth` module is deprecated. Do not use.", + DeprecationWarning, +) + + __version__ = 1, 0, 1 __author__ = 'Tiago Cogumbreiro <cogumbreiro@users.sf.net>' __credits__ = """ |