[Python-checkins] r65737 - python/trunk/Doc/library/symtable.rst

benjamin.peterson python-checkins at python.org
Sun Aug 17 03:17:16 CEST 2008


Author: benjamin.peterson
Date: Sun Aug 17 03:17:15 2008
New Revision: 65737

Log:
a few improvements

Modified:
   python/trunk/Doc/library/symtable.rst

Modified: python/trunk/Doc/library/symtable.rst
==============================================================================
--- python/trunk/Doc/library/symtable.rst	(original)
+++ python/trunk/Doc/library/symtable.rst	Sun Aug 17 03:17:15 2008
@@ -44,7 +44,7 @@
 
       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
-      ``'top'`` if the table is global (type ``'module'``).
+      ``'top'`` if the table is global (:meth:`get_type` returns ``'module'``).
 
    .. method:: get_lineno()
 
@@ -56,7 +56,7 @@
 
    .. method:: is_nested()
 
-      Return ``True`` if the block is nested in another.
+      Return ``True`` if the block is a nested class or function.
 
    .. method:: has_children()
 


More information about the Python-checkins mailing list