diff options
-rw-r--r-- | Doc/library/symtable.rst | 3 | ||||
-rw-r--r-- | Lib/symtable.py | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/symtable.rst b/Doc/library/symtable.rst index 0264f89..65ff5bf 100644 --- a/Doc/library/symtable.rst +++ b/Doc/library/symtable.rst @@ -69,7 +69,8 @@ Examining Symbol Tables .. method:: get_identifiers() - Return a list of names of symbols in this table. + Return a view object containing the names of symbols in the table. + See the :ref:`documentation of view objects <dict-views>`. .. method:: lookup(name) diff --git a/Lib/symtable.py b/Lib/symtable.py index 75ff092..5dd71ff 100644 --- a/Lib/symtable.py +++ b/Lib/symtable.py @@ -111,7 +111,7 @@ class SymbolTable: return bool(self._table.children) def get_identifiers(self): - """Return a list of names of symbols in the table. + """Return a view object containing the names of symbols in the table. """ return self._table.symbols.keys() |