diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-09 19:31:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-09 19:31:05 (GMT) |
commit | f93234bb8a87855f295d441524e519481ce6ab13 (patch) | |
tree | df779655af5c9119aee4440fdb428b210bb09f92 /Doc/whatsnew/3.7.rst | |
parent | dbdea629e2e0e4bd8845aa55041e0a0ca4172cf3 (diff) | |
download | cpython-f93234bb8a87855f295d441524e519481ce6ab13.zip cpython-f93234bb8a87855f295d441524e519481ce6ab13.tar.gz cpython-f93234bb8a87855f295d441524e519481ce6ab13.tar.bz2 |
bpo-30024: Circular imports involving absolute imports with binding (#1264)
a submodule to a name are now supported.
Diffstat (limited to 'Doc/whatsnew/3.7.rst')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index b2dc995..3de8bc5 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -85,6 +85,10 @@ Other Language Changes * :exc:`ImportError` now displays module name and module ``__file__`` path when ``from ... import ...`` fails. (Contributed by Matthias Bussonnier in :issue:`29546`.) +* Circular imports involving absolute imports with binding a submodule to + a name are now supported. + (Contributed by Serhiy Storchaka in :issue:`30024`.) + New Modules =========== |