Пример #1
0
def setOptNum(props, key, value):
    return SXOpts.setOptNum(props, key, value)
Пример #2
0
def delOpt(props, key):
    return SXOpts.delOpt(props, key)
Пример #3
0
def getOptNum(props, key, deflt=0):
    return SXOpts.getOptNum(props, key, deflt)
Пример #4
0
def getOptInt(props, key, deflt=0):
    return SXOpts.getOptInt(props, key, deflt)
Пример #5
0
def hasOpt(props, key):
    return SXOpts.hasOpts(props, key)
Пример #6
0
def getOpt(props, key, deflt=""):
    return SXOpts.getOpt(props, key, deflt)
Пример #7
0
def delOpts(props):
    return SXOpts.delOpts(props)
Пример #8
0
def saveOpts(props, filePath=None):
    if not filePath:
        return SXOpts.saveOpts(props)
    else:
        return SXOpts.saveOpts(props, filePath)
Пример #9
0
def setOpts(props, adict):
    return SXOpts.setOpts(props, adict)
Пример #10
0
def hasOpts(props):
    return SXOpts.hasOpts(props)
Пример #11
0
def getOpts(props):
    return SXOpts.getOpts(props)
Пример #12
0
def loadOpts(filePath):
    return SXOpts.loadOpts(filePath)
Пример #13
0
def makeOpts():
    return SXOpts.makeOpts()