summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-08-06 04:56:08 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2011-08-06 04:56:08 (GMT)
commitceed525de117c122083587f6f9e1f866ec0be61c (patch)
tree849fae03eb8e12b0657062b489f1937f07d897b5 /Doc
parent54f84d7b450c5d4e8ab56b140e71c7763f49d1a9 (diff)
downloadcpython-ceed525de117c122083587f6f9e1f866ec0be61c.zip
cpython-ceed525de117c122083587f6f9e1f866ec0be61c.tar.gz
cpython-ceed525de117c122083587f6f9e1f866ec0be61c.tar.bz2
s/a/an - grammar?
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/2.7.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst
index ebc6db4..6870da1 100644
--- a/Doc/whatsnew/2.7.rst
+++ b/Doc/whatsnew/2.7.rst
@@ -783,7 +783,7 @@ 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 absolute import
+* The :keyword:`import` statement will no longer try an 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;