[issue46127] Missing HTML span element in exceptions.html

2021-12-20 Thread Vivek Vashist
Change by Vivek Vashist : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-

[issue46127] Missing HTML span element in exceptions.html

2021-12-19 Thread Vivek Vashist
Vivek Vashist added the comment: Thanks for the information Daniel. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue46127] Missing HTML span element in exceptions.html

2021-12-19 Thread Daniel Diniz
Daniel Diniz added the comment: That happens because EncodingWarning isn't highlighted as an Exception by Pygments[0]. The doc page gets its exceptions diagram by: ".. literalinclude:: ../../Lib/test/exception_hierarchy.txt" and all other entries are recognized by Pygments, so we get the "ne"

[issue46127] Missing HTML span element in exceptions.html

2021-12-18 Thread Vivek Vashist
New submission from Vivek Vashist : Link: https://docs.python.org/3/library/exceptions.html#exception-hierarchy Looking at EncodingWarning under exception-hierarchy is displaying BLACK color instead of RED. Digging into HTML looks like it is missing the appropriate span class element. Worki