2008-08-16 19:37:05 -03:00
|
|
|
:mod:`symtable` --- Access to the compiler's symbol tables
|
|
|
|
==========================================================
|
2008-08-16 18:04:16 -03:00
|
|
|
|
|
|
|
.. module:: symtable
|
|
|
|
:synopsis: Interface to the compiler's internal symbol tables.
|
|
|
|
|
|
|
|
.. moduleauthor:: Jeremy Hylton <jeremy@alum.mit.edu>
|
2009-10-27 10:20:10 -03:00
|
|
|
.. sectionauthor:: Benjamin Peterson <benjamin@python.org>
|
2008-08-16 18:04:16 -03:00
|
|
|
|
|
|
|
|
|
|
|
Symbol tables are generated by the compiler from AST just before bytecode is
|
|
|
|
generated. The symbol table is responsible for calculating the scope of every
|
|
|
|
identifier in the code. :mod:`symtable` provides an interface to examine these
|
|
|
|
tables.
|
|
|
|
|
|
|
|
|
|
|
|
Generating Symbol Tables
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
.. function:: symtable(code, filename, compile_type)
|
|
|
|
|
2008-08-16 19:37:05 -03:00
|
|
|
Return the toplevel :class:`SymbolTable` for the Python source *code*.
|
2008-08-16 18:04:16 -03:00
|
|
|
*filename* is the name of the file containing the code. *compile_type* is
|
|
|
|
like the *mode* argument to :func:`compile`.
|
|
|
|
|
|
|
|
|
|
|
|
Examining Symbol Tables
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
.. class:: SymbolTable
|
|
|
|
|
|
|
|
A namespace table for a block. The constructor is not public.
|
|
|
|
|
|
|
|
.. method:: get_type()
|
|
|
|
|
|
|
|
Return the type of the symbol table. Possible values are ``'class'``,
|
|
|
|
``'module'``, and ``'function'``.
|
|
|
|
|
|
|
|
.. method:: get_id()
|
|
|
|
|
|
|
|
Return the table's identifier.
|
|
|
|
|
|
|
|
.. method:: get_name()
|
|
|
|
|
|
|
|
Return the table's name. This is the name of the class if the table is
|
|
|
|
for a class, the name of the function if the table is for a function, or
|
2008-08-16 22:17:15 -03:00
|
|
|
``'top'`` if the table is global (:meth:`get_type` returns ``'module'``).
|
2008-08-16 18:04:16 -03:00
|
|
|
|
|
|
|
.. method:: get_lineno()
|
|
|
|
|
|
|
|
Return the number of the first line in the block this table represents.
|
|
|
|
|
|
|
|
.. method:: is_optimized()
|
|
|
|
|
|
|
|
Return ``True`` if the locals in this table can be optimized.
|
|
|
|
|
|
|
|
.. method:: is_nested()
|
|
|
|
|
2008-08-16 22:17:15 -03:00
|
|
|
Return ``True`` if the block is a nested class or function.
|
2008-08-16 18:04:16 -03:00
|
|
|
|
|
|
|
.. method:: has_children()
|
|
|
|
|
|
|
|
Return ``True`` if the block has nested namespaces within it. These can
|
|
|
|
be obtained with :meth:`get_children`.
|
|
|
|
|
|
|
|
.. method:: has_exec()
|
|
|
|
|
|
|
|
Return ``True`` if the block uses ``exec``.
|
|
|
|
|
|
|
|
.. method:: has_import_start()
|
|
|
|
|
2008-08-16 19:37:05 -03:00
|
|
|
Return ``True`` if the block uses a starred from-import.
|
2008-08-16 18:04:16 -03:00
|
|
|
|
|
|
|
.. method:: get_identifiers()
|
|
|
|
|
|
|
|
Return a list of names of symbols in this table.
|
|
|
|
|
|
|
|
.. method:: lookup(name)
|
|
|
|
|
|
|
|
Lookup *name* in the table and return a :class:`Symbol` instance.
|
|
|
|
|
|
|
|
.. method:: get_symbols()
|
|
|
|
|
|
|
|
Return a list of :class:`Symbol` instances for names in the table.
|
|
|
|
|
|
|
|
.. method:: get_children()
|
|
|
|
|
|
|
|
Return a list of the nested symbol tables.
|
|
|
|
|
|
|
|
|
|
|
|
.. class:: Function
|
|
|
|
|
|
|
|
A namespace for a function or method. This class inherits
|
|
|
|
:class:`SymbolTable`.
|
|
|
|
|
|
|
|
.. method:: get_parameters()
|
|
|
|
|
|
|
|
Return a tuple containing names of parameters to this function.
|
|
|
|
|
|
|
|
.. method:: get_locals()
|
|
|
|
|
|
|
|
Return a tuple containing names of locals in this function.
|
|
|
|
|
|
|
|
.. method:: get_globals()
|
|
|
|
|
|
|
|
Return a tuple containing names of globals in this function.
|
|
|
|
|
|
|
|
.. method:: get_frees()
|
|
|
|
|
|
|
|
Return a tuple containing names of free variables in this function.
|
|
|
|
|
|
|
|
|
|
|
|
.. class:: Class
|
|
|
|
|
|
|
|
A namespace of a class. This class inherits :class:`SymbolTable`.
|
|
|
|
|
|
|
|
.. method:: get_methods()
|
|
|
|
|
|
|
|
Return a tuple containing the names of methods declared in the class.
|
|
|
|
|
|
|
|
|
|
|
|
.. class:: Symbol
|
|
|
|
|
2008-08-16 19:37:05 -03:00
|
|
|
An entry in a :class:`SymbolTable` corresponding to an identifier in the
|
2008-08-16 18:04:16 -03:00
|
|
|
source. The constructor is not public.
|
|
|
|
|
|
|
|
.. method:: get_name()
|
|
|
|
|
|
|
|
Return the symbol's name.
|
|
|
|
|
|
|
|
.. method:: is_referenced()
|
|
|
|
|
|
|
|
Return ``True`` if the symbol is used in its block.
|
|
|
|
|
|
|
|
.. method:: is_imported()
|
|
|
|
|
|
|
|
Return ``True`` if the symbol is created from an import statement.
|
|
|
|
|
|
|
|
.. method:: is_parameter()
|
|
|
|
|
|
|
|
Return ``True`` if the symbol is a parameter.
|
|
|
|
|
|
|
|
.. method:: is_global()
|
|
|
|
|
|
|
|
Return ``True`` if the symbol is global.
|
|
|
|
|
Merged revisions 73286,73294,73296,73459,73462-73463,73544,73576-73577,73595-73596,73693-73694,73704-73705,73707,73713,73937-73940,73945,73951,73979 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73286 | georg.brandl | 2009-06-08 09:57:35 +0200 (Mo, 08 Jun 2009) | 1 line
Remove period from end of headings.
........
r73294 | georg.brandl | 2009-06-08 15:34:52 +0200 (Mo, 08 Jun 2009) | 1 line
#6194: O_SHLOCK/O_EXLOCK are not really more platform independent than lockf().
........
r73296 | georg.brandl | 2009-06-08 18:03:41 +0200 (Mo, 08 Jun 2009) | 1 line
#6238: add fillchar to string.just function family.
........
r73459 | raymond.hettinger | 2009-06-17 03:43:47 +0200 (Mi, 17 Jun 2009) | 1 line
Add usage note.
........
r73462 | georg.brandl | 2009-06-17 11:36:21 +0200 (Mi, 17 Jun 2009) | 1 line
#6295: clarify blocking behavior of getch().
........
r73463 | georg.brandl | 2009-06-17 11:43:31 +0200 (Mi, 17 Jun 2009) | 1 line
#6255: document PyInt_FromSize_t.
........
r73544 | georg.brandl | 2009-06-24 08:41:19 +0200 (Mi, 24 Jun 2009) | 1 line
#6332: fix word dupes throughout the source.
........
r73576 | benjamin.peterson | 2009-06-27 01:37:06 +0200 (Sa, 27 Jun 2009) | 1 line
document is_declared_global()
........
r73577 | benjamin.peterson | 2009-06-27 16:16:23 +0200 (Sa, 27 Jun 2009) | 1 line
link to extensive generator docs in the reference manual
........
r73595 | ezio.melotti | 2009-06-28 01:45:39 +0200 (So, 28 Jun 2009) | 1 line
stmt and setup can contain multiple statements, see #5896
........
r73596 | ezio.melotti | 2009-06-28 02:07:45 +0200 (So, 28 Jun 2009) | 1 line
Fixed a wrong apostrophe
........
r73693 | jesse.noller | 2009-06-29 20:20:34 +0200 (Mo, 29 Jun 2009) | 1 line
Bug 5906: add a documentation note for unix daemons vs. multiprocessing daemons
........
r73694 | jesse.noller | 2009-06-29 20:24:26 +0200 (Mo, 29 Jun 2009) | 1 line
Issue 5740: multiprocessing.connection.* authkey fixes
........
r73704 | georg.brandl | 2009-06-30 18:15:43 +0200 (Di, 30 Jun 2009) | 1 line
#6376: fix copy-n-paste oversight.
........
r73705 | georg.brandl | 2009-06-30 18:17:28 +0200 (Di, 30 Jun 2009) | 1 line
#6374: add a bit of explanation about shell=True on Windows.
........
r73707 | georg.brandl | 2009-06-30 18:35:11 +0200 (Di, 30 Jun 2009) | 1 line
#6371: fix link targets.
........
r73713 | ezio.melotti | 2009-07-01 00:56:16 +0200 (Mi, 01 Jul 2009) | 1 line
Fixed a backslash that was not supposed to be there
........
r73937 | georg.brandl | 2009-07-11 12:12:36 +0200 (Sa, 11 Jul 2009) | 1 line
Fix style.
........
r73938 | georg.brandl | 2009-07-11 12:14:54 +0200 (Sa, 11 Jul 2009) | 1 line
#6446: fix import_spam() function to use correct error and reference handling.
........
r73939 | georg.brandl | 2009-07-11 12:18:10 +0200 (Sa, 11 Jul 2009) | 1 line
#6448: clarify docs for find_module().
........
r73940 | georg.brandl | 2009-07-11 12:37:38 +0200 (Sa, 11 Jul 2009) | 1 line
#6430: add note about size of "u" type.
........
r73945 | georg.brandl | 2009-07-11 12:51:31 +0200 (Sa, 11 Jul 2009) | 1 line
#6456: clarify the meaning of constants used as arguments to nl_langinfo().
........
r73951 | georg.brandl | 2009-07-11 16:23:38 +0200 (Sa, 11 Jul 2009) | 2 lines
array.array is actually a class.
........
r73979 | benjamin.peterson | 2009-07-12 18:56:54 +0200 (So, 12 Jul 2009) | 1 line
add versionadded
........
2009-10-27 11:29:22 -03:00
|
|
|
.. method:: is_declared_global()
|
|
|
|
|
|
|
|
Return ``True`` if the symbol is declared global with a global statement.
|
|
|
|
|
2008-08-16 18:04:16 -03:00
|
|
|
.. method:: is_local()
|
|
|
|
|
|
|
|
Return ``True`` if the symbol is local to its block.
|
|
|
|
|
|
|
|
.. method:: is_free()
|
|
|
|
|
2008-08-16 19:37:05 -03:00
|
|
|
Return ``True`` if the symbol is referenced in its block, but not assigned
|
|
|
|
to.
|
2008-08-16 18:04:16 -03:00
|
|
|
|
|
|
|
.. method:: is_assigned()
|
|
|
|
|
|
|
|
Return ``True`` if the symbol is assigned to in its block.
|
|
|
|
|
|
|
|
.. method:: is_namespace()
|
|
|
|
|
|
|
|
Return ``True`` if name binding introduces new namespace.
|
|
|
|
|
|
|
|
If the name is used as the target of a function or class statement, this
|
|
|
|
will be true.
|
|
|
|
|
Merged revisions 70171,70183,70290,70292,70315,70438,70464 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70171 | facundo.batista | 2009-03-04 22:18:17 +0100 (Mi, 04 Mär 2009) | 3 lines
Fixed a typo.
........
r70183 | benjamin.peterson | 2009-03-05 01:17:57 +0100 (Do, 05 Mär 2009) | 1 line
add example
........
r70290 | raymond.hettinger | 2009-03-10 02:07:30 +0100 (Di, 10 Mär 2009) | 1 line
Update url for the spec.
........
r70292 | raymond.hettinger | 2009-03-10 05:40:24 +0100 (Di, 10 Mär 2009) | 1 line
Clarify the meaning of normal and subnormal.
........
r70315 | raymond.hettinger | 2009-03-12 01:25:03 +0100 (Do, 12 Mär 2009) | 1 line
Add reference to solution for a commonly asked question.
........
r70438 | benjamin.peterson | 2009-03-17 21:29:51 +0100 (Di, 17 Mär 2009) | 1 line
I thought this was begging for an example
........
r70464 | benjamin.peterson | 2009-03-18 21:58:09 +0100 (Mi, 18 Mär 2009) | 1 line
a much better example
........
2009-10-27 10:54:57 -03:00
|
|
|
For example::
|
|
|
|
|
|
|
|
>>> table = symtable.symtable("def some_func(): pass", "string", "exec")
|
|
|
|
>>> table.lookup("some_func").is_namespace()
|
|
|
|
True
|
|
|
|
|
2008-08-16 18:04:16 -03:00
|
|
|
Note that a single name can be bound to multiple objects. If the result
|
|
|
|
is ``True``, the name may also be bound to other objects, like an int or
|
|
|
|
list, that does not introduce a new namespace.
|
|
|
|
|
|
|
|
.. method:: get_namespaces()
|
|
|
|
|
|
|
|
Return a list of namespaces bound to this name.
|
|
|
|
|
|
|
|
.. method:: get_namespace()
|
|
|
|
|
|
|
|
Return the namespace bound to this name. If more than one namespace is
|
|
|
|
bound, a :exc:`ValueError` is raised.
|