""" skknum.py --- pySKK numeric conversion utilities. Copyright (C) 2000 Mikio Nakajima Author: Mikio Nakajima Maintainer: Mikio Nakajima Version: $Id: skknum.py,v 1.1 2000/09/04 11:33:49 minakaji Exp $ Keywords: japanese Created: Last Modified: $Date: 2000/09/04 11:33:49 $ pySKK is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either versions 2, or (at your option) any later version. pySKK is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with pySKK, see the file COPYING. If not, write to the Free Software Foundation Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Commentary: """ ### Code: import sys def convert(string, num_list): """Return string of which '#[012349]' is replaced with a real numeric in accordance with NUM_LIST.""" sys.stderr.write('not yet implemented!') return string def make_henkan_key(key): """Return key of which numerics are replaced with '#'.""" sys.stderr.write('not yet implemented!') return key ## skknum.py ends here