def setLocalFlags(flags): """ Make the given local flags exist. """ for flag in flags: LocalFlags.__setattr__(flag._name, flag._get())
def getLocalFlags(): """ Get the local flags that are currently set, so that the flags created can be reset. """ return [ x for x in LocalFlags._iterAll()]
def getLocalFlags(): """ Get the local flags that are currently set, so that the flags created can be reset. """ return [x for x in LocalFlags._iterAll()]