Home | History | Annotate | Download | only in unicode

Lines Matching refs:old

308     # Generate delta tables for old versions
724 def merge_old_version(version, new, old):
726 if old.exclusions != new.exclusions:
742 # be unassigned in the old one
743 assert old.table[i] is None
745 # check characters unassigned in the old version
746 if old.table[i] is None:
751 if old.table[i] != new.table[i]:
752 for k in range(len(old.table[i])):
753 if old.table[i][k] != new.table[i][k]:
754 value = old.table[i][k]
756 #print "CATEGORY",hex(i), old.table[i][k], new.table[i][k]
759 #print "BIDIR",hex(i), old.table[i][k], new.table[i][k]
762 #print "DECOMP",hex(i), old.table[i][k], new.table[i][k]
767 #print "DECIMAL",hex(i), old.table[i][k], new.table[i][k]
768 # we only support changes where the old value is a single digit
772 # print "NUMERIC",hex(i), `old.table[i][k]`, new.table[i][k]
773 # Since 0 encodes "no change", the old value is better not 0
801 raise Difference, (hex(i), k, old.table[i], new.table[i])