예제 #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))