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

Lines Matching full:newcount

595             newcount = count + other[elem]
596 if newcount > 0:
597 result[elem] = newcount
614 newcount = count - other[elem]
615 if newcount > 0:
616 result[elem] = newcount
634 newcount = other_count if count < other_count else count
635 if newcount > 0:
636 result[elem] = newcount
654 newcount = count if count < other_count else other_count
655 if newcount > 0:
656 result[elem] = newcount