[issue39090] Document various options for getting the absolute path from pathlib.Path objects

2022-03-31 Thread EZ
EZ added the comment: First, I hope we all agree: 'C:\Windows' and '/usr/bin' == absolute path 'Windows' and 'bin' == relative path 'C:\Program Files' and '/bin' == absolute path 'C:\Windows\..\Program Files' and '/usr/../bin' == relative path It is very confusing between these two

[issue35428] xml.etree.ElementTree.tostring violates W3 standards allowing encoding='unicode' without error

2018-12-06 Thread EZ
New submission from EZ : The documentation[0] for 3.x of xml.etree.ElementTree.tostring is quite clear: > Use encoding="unicode" to generate a Unicode string. See also the creation of the problem: https://bugs.python.org/issue10942 This is a violation of W3 standard