Closed
Description
Documentation
SymbolTable.get_identifiers() currently says:
"Return a list of names of symbols in this table."
However, the returned value is actually dict_keys, a dictionary view object, which doesn't support everything that a list does (notably, it's not subscriptable).
I have a PR with a proposed change incoming.