[KoCo-CVS] [Commit] KoreanCodecs setup.py
Brought to you by:
perky
From: Chang <pe...@us...> - 2002-04-27 04:48:42
|
perky 02/04/26 21:48:36 Modified: . setup.py Log: - Add twobytestream which will be used by CP949, EUC-KR and Johab as StreamReader, StreamWriter, StreamReaderWriter assistant Revision Changes Path 1.18 +2 -1 KoreanCodecs/setup.py Index: setup.py =================================================================== RCS file: /cvsroot/koco/KoreanCodecs/setup.py,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- setup.py 27 Apr 2002 03:27:17 -0000 1.17 +++ setup.py 27 Apr 2002 04:48:36 -0000 1.18 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# $Id: setup.py,v 1.17 2002/04/27 03:27:17 perky Exp $ +# $Id: setup.py,v 1.18 2002/04/27 04:48:36 perky Exp $ import sys from distutils.core import setup, Extension @@ -51,4 +51,5 @@ ext_modules = flavors['extension'] and [ Extension("korean.c._koco", ["src/_koco.c"]), Extension("korean.c.hangul", ["src/hangul.c"]), + Extension("korean.c.twobytestream", ["src/twobytestream.c"]), ] or []) |