Top | Previous | Next |
system.util.getGlobals |
Description This method returns a dictionary that provides access to the legacy global namespace. As of version 7.7.0, most new scripts use the modern style of scoping, which makes the 'global' keyword act very differently. Most importantly, the modern scoping rules mean that variables declared as 'global' are only global within that one module. The system.util.getGlobals() method can be used to interact with older scripts that used the old meaning of the 'global' keyword. Syntax system.util.getGlobals() Parameters none Returns PyStringMap - The global namespace, as a dictionary. Scope All Examples # Read and print out global variable 'foo' |