mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
Add a "const" to make gcc happy.
This commit is contained in:
parent
f2dae0e14a
commit
898f1879e1
1 changed files with 1 additions and 1 deletions
|
|
@ -586,7 +586,7 @@ decode_str(const char *str, struct tok_state *tok)
|
||||||
{
|
{
|
||||||
PyObject* utf8 = NULL;
|
PyObject* utf8 = NULL;
|
||||||
const char *s;
|
const char *s;
|
||||||
char *newl[2] = {NULL, NULL};
|
const char *newl[2] = {NULL, NULL};
|
||||||
int lineno = 0;
|
int lineno = 0;
|
||||||
tok->enc = NULL;
|
tok->enc = NULL;
|
||||||
tok->str = str;
|
tok->str = str;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue