https://github.com/python/cpython/commit/7e777c587f01434ac5eea3d63d096f191278dad2 commit: 7e777c587f01434ac5eea3d63d096f191278dad2 branch: main author: Seth Michael Larson <[email protected]> committer: sethmlarson <[email protected]> date: 2026-02-05T15:43:39Z summary:
gh-144484: Warn users not to use wsgiref in production 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]
