Style fixes.

This commit is contained in:
Georg Brandl 2009-10-10 22:03:43 +00:00
parent a0bcc27e65
commit ffc87d5c8c
1 changed files with 6 additions and 6 deletions

View File

@ -21,20 +21,20 @@ import sys
import re
def main(args):
unicode_names= []
unicode_names = []
for ix in range(sys.maxunicode+1):
try:
unicode_names.append( (ix, unicodedata.name(unichr(ix))) )
unicode_names.append((ix, unicodedata.name(unichr(ix))))
except ValueError: # no name for the character
pass
for arg in args:
pat = re.compile(arg, re.I)
matches = [(x,y) for (x,y) in unicode_names
matches = [(y,x) for (x,y) in unicode_names
if pat.search(y) is not None]
if matches:
print "***", arg, "matches", "***"
for (x,y) in matches:
print "%s (%d)" % (y,x)
for match in matches:
print "%s (%d)" % match
if __name__ == "__main__":
main(sys.argv[1:])