#4048 make the parser module accept relative imports as valid

This commit is contained in:
Benjamin Peterson 2008-11-03 15:14:51 +00:00
parent 8928a7e911
commit 6624a9fddd
4 changed files with 7 additions and 2 deletions

View file

@ -62,6 +62,7 @@ Eric Beser
Steven Bethard
Stephen Bevan
Ron Bickers
David Binger
Dominic Binks
Philippe Biondi
Stuart Bishop

View file

@ -12,6 +12,8 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
- Issue #4048: The parser module now correctly validates relative imports.
- Issue #4225: ``from __future__ import unicode_literals`` didn't work in an
exec statement.