https://github.com/python/cpython/commit/3e1197e50d08de2a6e1ccbaef6adccef6f78d702 commit: 3e1197e50d08de2a6e1ccbaef6adccef6f78d702 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2026-02-05T18:21:31+02:00 summary:
[3.14] gh-144484: Warn users not to use wsgiref in production (#144511) gh-144484: Warn users not to use wsgiref in production (cherry picked from commit 7e777c587f01434ac5eea3d63d096f191278dad2) Co-authored-by: Seth Michael Larson <[email protected]> files: M Doc/library/wsgiref.rst diff --git a/Doc/library/wsgiref.rst b/Doc/library/wsgiref.rst index 381c993834753d..157d7058931c16 100644 --- a/Doc/library/wsgiref.rst +++ b/Doc/library/wsgiref.rst @@ -11,6 +11,11 @@ -------------- +.. warning:: + + :mod:`wsgiref` is a reference implementation and is not recommended for + production. The module only implements basic security checks. + The Web Server Gateway Interface (WSGI) is a standard interface between web server software and web applications written in Python. Having a standard interface makes it easy to use an application that supports WSGI with a number _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
