示例#1
0
def unique():
    return str(int(_uniquefloat() * 1000))
示例#2
0
def unique():
    if PY2:
        return str(long(_uniquefloat() * 1000))
    else:
        return str(int(_uniquefloat() * 1000))
示例#3
0
def unique():
    return str(long(_uniquefloat() * 1000))
示例#4
0
def unique():
    return str(long(_uniquefloat() * 1000))
示例#5
0
def unique():
    if PY2:
        return str(long(_uniquefloat() * 1000))
    else:
        return str(int(_uniquefloat() * 1000))
示例#6
0
文件: lockfile.py 项目: RCBiczok/VTK
def unique():
    return str(int(_uniquefloat() * 1000))