Home | History | Annotate | Download | only in python2.7

Lines Matching refs:total

72     total = intpart + fraction
73 nextdigit = total[i+digs]
77 if total[n] != '9': break
80 total = '0' + total
83 total = total[:n] + chr(ord(total[n]) + 1) + '0'*(len(total)-n-1)
84 intpart, fraction = total[:i], total[i:]