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

benjamin.peterson python-checkins at python.org
Sat Jun 27 01:37:06 CEST 2009


Author: benjamin.peterson
Date: Sat Jun 27 01:37:06 2009
New Revision: 73576

Log:
document is_declared_global()

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	Sat Jun 27 01:37:06 2009
@@ -144,6 +144,10 @@
 
       Return ``True`` if the symbol is global.
 
+   .. method:: is_declared_global()
+
+      Return ``True`` if the symbol is declared global with a global statement.
+
    .. method:: is_local()
 
       Return ``True`` if the symbol is local to its block.


More information about the Python-checkins mailing list