Example #1
0
def guess_int_or_float(val):
    try:
        return to_best_int_float(val)
    except Exception, exp:
        return None
Example #2
0
def guess_int_or_float(val):
    try:
        return to_best_int_float(val)
    except Exception, exp:
        return None