|
Last change
on this file since 5f4d9c3 was
5f4d9c3,
checked in by Maciej Prill <mprill@…>, 14 years ago
|
|
Rewritten the build system, added lem UTF-8 version.
|
-
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.