Merged revisions 67077 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r67077 | benjamin.peterson | 2008-11-03 09:14:51 -0600 (Mon, 03 Nov 2008) | 1 line

  #4048 make the parser module accept relative imports as valid
........
This commit is contained in:
Benjamin Peterson 2008-11-03 15:18:30 +00:00
parent 084ce7a5dc
commit eeed0c7822
4 changed files with 7 additions and 2 deletions

View file

@ -1879,10 +1879,10 @@ static int
count_from_dots(node *tree)
{
int i;
for (i = 0; i < NCH(tree); i++)
for (i = 1; i < NCH(tree); i++)
if (TYPE(CHILD(tree, i)) != DOT)
break;
return i;
return i-1;
}
/* 'from' ('.'* dotted_name | '.') 'import' ('*' | '(' import_as_names ')' |