mirror of
https://github.com/python/cpython.git
synced 2025-07-12 22:05:16 +00:00
Merged revisions 61958-61959 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r61958 | amaury.forgeotdarc | 2008-03-27 00:07:43 +0100 (Thu, 27 Mar 2008) | 2 lines C89 compliance: Microsoft compilers want variable declarations at the top ........
This commit is contained in:
parent
b1b3efc504
commit
3a93212824
1 changed files with 2 additions and 4 deletions
|
@ -1586,8 +1586,7 @@ PyParser_ASTFromString(const char *s, const char *filename, int start,
|
|||
{
|
||||
mod_ty mod;
|
||||
perrdetail err;
|
||||
int iflags;
|
||||
iflags = PARSER_FLAGS(flags);
|
||||
int iflags = PARSER_FLAGS(flags);
|
||||
|
||||
node *n = PyParser_ParseStringFlagsFilenameEx(s, filename,
|
||||
&_PyParser_Grammar, start, &err,
|
||||
|
@ -1614,9 +1613,8 @@ PyParser_ASTFromFile(FILE *fp, const char *filename, const char* enc,
|
|||
{
|
||||
mod_ty mod;
|
||||
perrdetail err;
|
||||
int iflags;
|
||||
int iflags = PARSER_FLAGS(flags);
|
||||
|
||||
iflags = PARSER_FLAGS(flags);
|
||||
node *n = PyParser_ParseFileFlagsEx(fp, filename, enc,
|
||||
&_PyParser_Grammar,
|
||||
start, ps1, ps2, &err, &iflags);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue