source: src/compdic_utf8/symbols.py

Last change on this file was e7de6cc, checked in by Tomasz Obrebski <to@…>, 12 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
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.