mirror of
https://github.com/python/cpython.git
synced 2025-09-14 04:37:29 +00:00
Remove forward static reference since it is not required
This commit is contained in:
parent
ce3d34dde7
commit
7fe16e79f5
1 changed files with 1 additions and 3 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue