summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-08-06 04:52:56 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2011-08-06 04:52:56 (GMT)
commit54f84d7b450c5d4e8ab56b140e71c7763f49d1a9 (patch)
tree9514d2e1fda02cef45520a62bdb703b8605b0c7b /Doc/whatsnew
parentb5bd4c88b5de771647cc644b4e50e701cadba08c (diff)
downloadcpython-54f84d7b450c5d4e8ab56b140e71c7763f49d1a9.zip
cpython-54f84d7b450c5d4e8ab56b140e71c7763f49d1a9.tar.gz
cpython-54f84d7b450c5d4e8ab56b140e71c7763f49d1a9.tar.bz2
Fix closes issue11047 - Correct the 2.7 whatsnew description for issue 7902.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/2.7.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst
index 6cd3aba..ebc6db4 100644
--- a/Doc/whatsnew/2.7.rst
+++ b/Doc/whatsnew/2.7.rst
@@ -783,8 +783,8 @@ Some smaller changes made to the core Python language are:
(Contributed by Fredrik Johansson and Victor Stinner; :issue:`3439`.)
-* The :keyword:`import` statement will no longer try a relative import
- if an absolute import (e.g. ``from .os import sep``) fails. This
+* The :keyword:`import` statement will no longer try a absolute import
+ if a relative import (e.g. ``from .os import sep``) fails. This
fixes a bug, but could possibly break certain :keyword:`import`
statements that were only working by accident. (Fixed by Meador Inge;
:issue:`7902`.)