Пример #1
0
def setLocalFlags(flags):
    """ Make the given local flags exist.  """
    for flag in flags:
        LocalFlags.__setattr__(flag._name, flag._get())
Пример #2
0
def setLocalFlags(flags):
    """ Make the given local flags exist.  """
    for flag in flags:
        LocalFlags.__setattr__(flag._name, flag._get())
Пример #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()]
Пример #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()]