Esempio n. 1
0
def setLocalFlags(flags):
    """ Make the given local flags exist.  """
    for flag in flags:
        LocalFlags.__setattr__(flag._name, flag._get())
Esempio n. 2
0
def setLocalFlags(flags):
    """ Make the given local flags exist.  """
    for flag in flags:
        LocalFlags.__setattr__(flag._name, flag._get())
Esempio n. 3
0
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()]
Esempio n. 4
0
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()]