autozimu / LanguageClient-neovim

Language Server Protocol (LSP) support for vim and neovim.
MIT License
3.55k stars 272 forks source link

denite: fix IntEnum str representation for python3.11 #1257

Open 4eUeP opened 1 year ago

4eUeP commented 1 year ago

Python 3.11 has a breaking change that IntEnum.__str__() returns the int value instead of its name. This will make the following indexing fail on Python 3.11.

Ref: https://docs.python.org/3.11/library/enum.html#enum.IntEnum