Lines Matching refs:name
3 # script to extract commit author's name from standard input. The
10 # tie with longer author name. Among the all author names extract the
39 for name in names:
40 lowname = name.lower()
43 if an > name:
44 sys.stderr.write('eliminated {} in favor of {}\n'.format(an, name))
45 ndict[lowname] = name
47 sys.stderr.write('eliminated {} in favor of {}\n'.format(name, an))
49 ndict[lowname] = name
51 for name in sorted(ndict.values()):
52 print(name)