diff --git a/Misc/NEWS.d/next/Windows/2022-03-20-15-47-35.bpo-42658.16eXtb.rst b/Misc/NEWS.d/next/Windows/2022-03-20-15-47-35.bpo-42658.16eXtb.rst index 206b3f33d64730..852cc77676a31d 100644 --- a/Misc/NEWS.d/next/Windows/2022-03-20-15-47-35.bpo-42658.16eXtb.rst +++ b/Misc/NEWS.d/next/Windows/2022-03-20-15-47-35.bpo-42658.16eXtb.rst @@ -1,3 +1,3 @@ -Using Windows function ``LCMapStringEx`` in :func:``ntpath.normcase`` instead -of :func:``str.lower`` to deal with non ASCII characters. The ``LCMapStringEx`` -is added in :mod:``_winapi`` module also. +Support native Windows case-insensitive path comparisons by using +``LCMapStringEx`` instead of :func:`str.lower` in :func:`ntpath.normcase`. +Add ``LCMapStringEx`` to the :mod:`_winapi` module.