|
Last change
on this file since f924e4b was
e7de6cc,
checked in by Tomasz Obrebski <to@…>, 14 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
|
| Rev | Line | |
|---|
| [5f4d9c3] | 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.