Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Scripting_function


Panel
titleDescription

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.

New_in
Version8.1.0


The globals dictionary will now persist across the lifetime of the JVM, and it's now accessible at system.util.globals

Client permissions restrictions


Panel
titleSyntax

system.util.getGlobals()

  • Parameters

Nothing

  • Returns

Dictionary[String, Any] The global namespace, as a dictionary.

  • Scope

Gateway, Vision Client, Perspective Session

panel
Panel
titleCode Examples
Code Block
languagepy
titleCode Snippet
# Read and print out global variable 'foo'.
print system.util.getGlobals()['foo']

Code Block
languagepy
titleCode Snippet
 # Write value 'hello' to global variable 'foo'.
system.util.getGlobals()['foo'] = 'hello' 
Panel
titleKeywords

system util getGlobals, util.getGlobals