Callable.callee_functions()

Returns a Functions object that represents called functions from the function/modifier.

callee_functions() → Functions

Example

from glider import *
def query():
  functions = Functions().exec(30)

  called_functions = []
  for function in functions:
    for called in function.callee_functions().exec():
      # Return each called function from this specific one
      called_functions.append(called)

  return called_functions

Example output

Last updated