summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-02-04 20:46:50 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-02-04 20:46:50 (GMT)
commit7fe16e79f569d24fcfe8436021c027e307cd2de2 (patch)
treef2a1a4dfe133ed2f974f9a05bf6bd643a05c0902 /Modules
parentce3d34dde784e6e645703b6ce6aee53b8868298a (diff)
downloadcpython-7fe16e79f569d24fcfe8436021c027e307cd2de2.zip
cpython-7fe16e79f569d24fcfe8436021c027e307cd2de2.tar.gz
cpython-7fe16e79f569d24fcfe8436021c027e307cd2de2.tar.bz2
Remove forward static reference since it is not required
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_iconv_codec.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/Modules/_iconv_codec.c b/Modules/_iconv_codec.c
index 6b10dbc..9963230 100644
--- a/Modules/_iconv_codec.c
+++ b/Modules/_iconv_codec.c
@@ -40,8 +40,6 @@ typedef struct {
} iconvcodecObject;
PyDoc_STRVAR(iconvcodec_doc, "iconvcodec object");
-staticforward PyTypeObject iconvcodec_Type;
-
/* does the chosen internal encoding require
* byteswapping to get native endianness?
* 0=no, 1=yes, -1=unknown */
@@ -608,7 +606,7 @@ iconvcodec_repr(PyObject *self)
((iconvcodecObject *)self)->encoding);
}
-statichere PyTypeObject iconvcodec_Type = {
+static PyTypeObject iconvcodec_Type = {
PyObject_HEAD_INIT(&PyType_Type)
0, /* Number of items for varobject */
"iconvcodec", /* Name of this type */