source: src/compiledic/symbols.py @ 5f4d9c3

Last change on this file since 5f4d9c3 was 5f4d9c3, checked in by Maciej Prill <mprill@…>, 12 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
4import sys
5import locale
6encoding = locale.getdefaultlocale()[1]
7
8
9sys.stdout.write(u"<eps>\t0\n".encode(encoding))         
10for 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.