Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39b0f89 commit bb3649eCopy full SHA for bb3649e
2 files changed
Parser/grammar.c
@@ -217,7 +217,7 @@ translabel(g, lb)
217
}
218
219
if (lb->lb_type == STRING) {
220
- if (isalpha(lb->lb_str[1]) || lb->lb_str[1] == '_') {
+ if (isalpha((int)(lb->lb_str[1])) || lb->lb_str[1] == '_') {
221
char *p;
222
if (Py_DebugFlag)
223
printf("Label %s is a keyword\n", lb->lb_str);
Parser/pgen.c
@@ -112,7 +112,7 @@ newnfa(name)
112
char *name;
113
{
114
nfa *nf;
115
- static type = NT_OFFSET; /* All types will be disjunct */
+ static int type = NT_OFFSET; /* All types will be disjunct */
116
117
nf = PyMem_NEW(nfa, 1);
118
if (nf == NULL)
0 commit comments