[KoCo-CVS] [Commit] KoreanCodecs/src koco_stream.h
Brought to you by:
perky
From: Hye-Shik C. <pe...@us...> - 2003-01-02 07:44:41
|
perky 03/01/01 23:44:40 Modified: src koco_stream.h Log: StreamReader_methods is static, too. Revision Changes Path 1.12 +4 -4 KoreanCodecs/src/koco_stream.h Index: koco_stream.h =================================================================== RCS file: /cvsroot/koco/KoreanCodecs/src/koco_stream.h,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- koco_stream.h 2 Jan 2003 07:41:23 -0000 1.11 +++ koco_stream.h 2 Jan 2003 07:44:40 -0000 1.12 @@ -1,10 +1,10 @@ /* - * euckr_stream.c - $Revision: 1.11 $ + * euckr_stream.c - $Revision: 1.12 $ * * KoreanCodecs EUC-KR StreamReader C Implementation * * Author : Hye-Shik Chang <pe...@Fr...> - * Date : $Date: 2003/01/02 07:41:23 $ + * Date : $Date: 2003/01/02 07:44:40 $ * Created : 28 April 2002 * * This file is part of KoreanCodecs. @@ -593,7 +593,7 @@ return Py_None; } -struct PyMethodDef StreamReader_methods[] = { +static struct PyMethodDef StreamReader_methods[] = { {"__init__", (PyCFunction) StreamReader___init__, METH_VARARGS | METH_KEYWORDS, StreamReader___init____doc__}, {"read", (PyCFunction) StreamReader_read, @@ -608,6 +608,6 @@ }; /* - * $Id: koco_stream.h,v 1.11 2003/01/02 07:41:23 perky Exp $ + * $Id: koco_stream.h,v 1.12 2003/01/02 07:44:40 perky Exp $ * ex: ts=8 sts=4 et */ |