diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-05-03 22:28:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 22:28:09 (GMT) |
commit | 696d868d1910d39c5d5e82d2eb7f0a42c6964b28 (patch) | |
tree | 15d4cdbca99f386669dd4c6b6b47af0a114e183a /Doc | |
parent | 4ede78104522dfd27d31d3a1b6dfaa673398e612 (diff) | |
download | cpython-696d868d1910d39c5d5e82d2eb7f0a42c6964b28.zip cpython-696d868d1910d39c5d5e82d2eb7f0a42c6964b28.tar.gz cpython-696d868d1910d39c5d5e82d2eb7f0a42c6964b28.tar.bz2 |
gh-87304: Improve comments in language reference for imports (GH-92164)
(cherry picked from commit ee2205b208389611e8a278ac1bc74b34f4994fd2)
Co-authored-by: Robert Yang <35813883+robert861212@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/reference/simple_stmts.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst index 5f9e8dc..2c2c245 100644 --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -795,9 +795,9 @@ The :keyword:`from` form uses a slightly more complex process: Examples:: import foo # foo imported and bound locally - import foo.bar.baz # foo.bar.baz imported, foo bound locally - import foo.bar.baz as fbb # foo.bar.baz imported and bound as fbb - from foo.bar import baz # foo.bar.baz imported and bound as baz + import foo.bar.baz # foo, foo.bar, and foo.bar.baz imported, foo bound locally + import foo.bar.baz as fbb # foo, foo.bar, and foo.bar.baz imported, foo.bar.baz bound as fbb + from foo.bar import baz # foo, foo.bar, and foo.bar.baz imported, foo.bar.baz bound as baz from foo import attr # foo imported and foo.attr bound as attr .. index:: single: * (asterisk); import statement |