mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Issue #5592: make the encodefuncs symbol static
This commit is contained in:
parent
e549ead826
commit
24f3629083
1 changed files with 11 additions and 11 deletions
|
@ -731,7 +731,7 @@ typedef struct {
|
|||
encodefunc_t encodefunc;
|
||||
} encodefuncentry;
|
||||
|
||||
encodefuncentry encodefuncs[] = {
|
||||
static encodefuncentry encodefuncs[] = {
|
||||
{"ascii", (encodefunc_t) ascii_encode},
|
||||
{"iso8859-1", (encodefunc_t) latin1_encode},
|
||||
{"utf-16-be", (encodefunc_t) utf16be_encode},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue