Class |
Description |
|---|---|
dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping… |
|
Function |
Description |
|---|---|
|
|
Bases: ScriptingInstance
Bases: Thread
This constructor should always be called with keyword arguments. Arguments are:
group should be None; reserved for future extension when a ThreadGroup class is implemented.
target is the callable object to be invoked by the run() method. Defaults to None, meaning nothing is called.
name is the thread name. By default, a unique name is constructed of the form “Thread-N” where N is a small decimal number.
args is the argument tuple for the target invocation. Defaults to ().
kwargs is a dictionary of keyword arguments for the target invocation. Defaults to {}.
If a subclass overrides the constructor, it must make sure to invoke the base class constructor (Thread.__init__()) before doing anything else to the thread.
Method representing the thread’s activity.
You may override this method in a subclass. The standard run() method invokes the callable object passed to the object’s constructor as the target argument, if any, with sequential and keyword arguments taken from the args and kwargs arguments, respectively.
Bases: ScriptingProvider
Bases: object
Represents an automatically-populated (magic) variable in the python scripting console
get_value (Callable[[PythonScriptingInstance], Any]) –
set_value (Callable[[PythonScriptingInstance, Any, Any], None] | None) –
None
Function to call, before every time a script is evaluated, to get the value of the variable
(Optional) function to call after a script is evaluated, if the value of the variable has changed during the course of the script. If None, a warning will be printed stating that the variable is read-only. Signature: (instance: PythonScriptingInstance, old_value: any, new_value: any) -> None
alias of PythonScriptingInstance
Add a magic variable to all scripting instances created by the scripting provider :param name: Variable name identifier to be used in the interpreter :param get_value: Function to call, before every time a script is evaluated, to get the value of the variable :param set_value: (Optional) Function to call after a script is evaluated, if the value of the variable has changed during the course of the script. If None, a warning will be printed stating that the variable is read-only. Signature: (instance: PythonScriptingInstance, old_value: any, new_value: any) -> None :param depends_on: List of other variables whose values on which this variable’s value depends
name (str) –
get_value (Callable[[PythonScriptingInstance], Any]) –
set_value (Callable[[PythonScriptingInstance, Any, Any], None] | None) –
Remove a magic variable by name :param name: Variable name
name (str) –