From: Senthil Kumaran Date: Sat, 6 Aug 2011 04:56:08 +0000 (+0800) Subject: s/a/an - grammar? X-Git-Tag: v2.7.3rc1~535 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ceed525de117c122083587f6f9e1f866ec0be61c;p=python s/a/an - grammar? --- diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index ebc6db4482..6870da171c 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;