Uh oh!
There was an error while loading. Please reload this page.
Replace sentinel value with an enumerator. - #102
Conversation
phibos
commented
Dec 10, 2021
Looks like this would break backward compatibility. Are there any advantages besides the improved code completion? |
noenandre
commented
Dec 14, 2021
Better type hints than just integer was really what I was trying to achieved here. Of course that can be achieved with a literal type (Literal[1, 2]), but a enum makes a better connection between the sentinel value and their function, and gives better auto code completion, as you said. |
Issue type
Summary
Replace XML_PARSER_DOM and XML_PARSER_SAX with an enumerator.
If this is not a perfect use case for a enum class, I don't what is.