コード例 #1
0
ファイル: flavorutil.py プロジェクト: pombreda/rmake
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
ファイル: flavorutil.py プロジェクト: pombreda/rmake
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()]