Last change
on this file was
e7de6cc,
checked in by Tomasz Obrebski <to@…>, 13 years ago
|
new version of dgp
added dgc, tre and compdic components
compiledic renamed to compdic_utf8
./configure updated
|
-
Property mode set to
100755
|
File size:
286 bytes
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | # -*- coding: utf-8 -*- |
---|
3 | |
---|
4 | import sys |
---|
5 | import locale |
---|
6 | encoding = locale.getdefaultlocale()[1] |
---|
7 | |
---|
8 | |
---|
9 | sys.stdout.write(u"<eps>\t0\n".encode(encoding)) |
---|
10 | for i in range(33,60000): |
---|
11 | line = u"%s\t%s\n"%(unichr(i), i) |
---|
12 | sys.stdout.write(line.encode(encoding)) |
---|
Note: See
TracBrowser
for help on using the repository browser.