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
........
diff --git a/Misc/ACKS b/Misc/ACKS
index ac8f6ed..72b18c9 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -62,6 +62,7 @@
Steven Bethard
Stephen Bevan
Ron Bickers
+David Binger
Dominic Binks
Philippe Biondi
Stuart Bishop
diff --git a/Misc/NEWS b/Misc/NEWS
index c47620a..bb083a2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@
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.