# HG changeset patch # User HackBot # Date 1397772863 0 # Node ID 6d2e9d293bda193a053fa89c32db9e533bdcefa4 # Parent 6eb8f50f2a3723613d555a4d1d7cfd982b113dc1 sed -i \'s/U[+]/U[+]/\' bin/unicode diff -r 6eb8f50f2a37 -r 6d2e9d293bda bin/unicode --- a/bin/unicode Tue Apr 15 23:32:50 2014 +0000 +++ b/bin/unicode Thu Apr 17 22:14:23 2014 +0000 @@ -3,7 +3,7 @@ import re import sys import unicodedata -def l(c): m = re.match('(?:U+)?([0-9a-f]{1,5})$', c, re.I); return unicodedata.lookup(c) if m is None else unichr(int(m.group(1),16)) +def l(c): m = re.match('(?:U[+])?([0-9a-f]{1,5})$', c, re.I); return unicodedata.lookup(c) if m is None else unichr(int(m.group(1),16)) try: print u''.join(map(l, sys.argv[1:])).encode('utf-8') except KeyError: