From: Benjamin Peterson Date: Fri, 26 Jun 2009 23:37:06 +0000 (+0000) Subject: document is_declared_global() X-Git-Tag: v2.7a1~899 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f36bebd06f5fde4abff959389e879a4f557cdb42;p=python document is_declared_global() --- diff --git a/Doc/library/symtable.rst b/Doc/library/symtable.rst index 9ea3f01b40..9aafd4e13c 100644 --- a/Doc/library/symtable.rst +++ b/Doc/library/symtable.rst @@ -144,6 +144,10 @@ Examining Symbol Tables 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.