summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library/2018-10-03-09-25-02.bpo-34711.HeOmKR.rst
Commit message (Collapse)AuthorAgeFilesLines
* [blurb] v3.8.0a1Łukasz Langa2019-02-031-3/+0
|
* bpo-34711: Return HTTPStatus.NOT_FOUND if path.endswith('/') and not a ↵Michael Felt2018-12-261-0/+3
directory (GH-9687) AIX allows a trailing slash on local file system paths, which isn't what we want in http.server. Accordingly, check explicitly for this case in the server code, rather than relying on the OS raising an exception. Patch by Michael Felt.