We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc3b31e commit 5d8e7a1Copy full SHA for 5d8e7a1
Doc/library/symtable.rst
@@ -69,7 +69,8 @@ Examining Symbol Tables
69
70
.. method:: get_identifiers()
71
72
- Return a list of names of symbols in this table.
+ Return a view object containing the names of symbols in the table.
73
+ See the :ref:`documentation of view objects <dict-views>`.
74
75
.. method:: lookup(name)
76
Lib/symtable.py
@@ -111,7 +111,7 @@ def has_children(self):
111
return bool(self._table.children)
112
113
def get_identifiers(self):
114
- """Return a list of names of symbols in the table.
+ """Return a view object containing the names of symbols in the table.
115
"""
116
return self._table.symbols.keys()
117
0 commit comments