Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
7fe16e79
Commit
7fe16e79
authored
Feb 04, 2003
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove forward static reference since it is not required
parent
ce3d34dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
Modules/_iconv_codec.c
Modules/_iconv_codec.c
+1
-3
No files found.
Modules/_iconv_codec.c
View file @
7fe16e79
...
...
@@ -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
);
}
static
here
PyTypeObject
iconvcodec_Type
=
{
static
PyTypeObject
iconvcodec_Type
=
{
PyObject_HEAD_INIT
(
&
PyType_Type
)
0
,
/* Number of items for varobject */
"iconvcodec"
,
/* Name of this type */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment