gh-117026: Remove outdated sentence in SimpleHTTPRequestHandler docs (GH-117027)

The code was changed in 0f7cddc308 (bpo-839496/gh-39531).
This commit is contained in:
Saleh Dehqanpour 2025-05-16 22:42:40 +03:30 committed by GitHub
parent ac8df4b589
commit ea2d707bd5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -429,8 +429,7 @@ instantiation, of which this module provides three different variants:
``'Last-Modified:'`` header with the file's modification time.
Then follows a blank line signifying the end of the headers, and then the
contents of the file are output. If the file's MIME type starts with
``text/`` the file is opened in text mode; otherwise binary mode is used.
contents of the file are output.
For example usage, see the implementation of the ``test`` function
in :source:`Lib/http/server.py`.