[issue43397] Incorrect conversion path case with german character
Сергей М added the comment: I've found the useful function https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-charlowerw -- ___ Python tracker <https://bugs.python.org/is
[issue43397] Incorrect conversion path case with german character
New submission from Сергей М : I try to normalize case for path with german characters: ``` >os.path.normcase(r'c:\asd\ASDẞ') 'c:\\asd\\asdß' ``` But in OS Windows r'c:\asd\ASDẞ' and r'c:\asd\asdß' are different paths. -- components