]> granicus.if.org Git - python/commitdiff
Merged revisions 75327 via svnmerge from
authorGeorg Brandl <georg@python.org>
Sat, 10 Oct 2009 22:05:26 +0000 (22:05 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 10 Oct 2009 22:05:26 +0000 (22:05 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r75327 | georg.brandl | 2009-10-11 00:03:43 +0200 (So, 11 Okt 2009) | 1 line

  Style fixes.
........

Demo/scripts/find-uname.py

index fbf403314dd9e10f029a66a8b3f855dd7626be30..1902423db7536e1b67ffc6c24f84bf5fb05b680e 100644 (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(chr(ix))) )
+            unicode_names.append((ix, unicodedata.name(chr(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
-                       if pat.search(y) is not None]
+        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:])