diff --git a/doc/manual.rst b/doc/manual.rst index 8788e53a360a5..fea06fa75d347 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -6350,6 +6350,12 @@ does not export these identifiers. The `import` statement is only allowed at the top level. +In some situations, it may be useful to import all symbols (public or private) +from a module. The syntax `import foo {.all.}` can be used to import all +symbols from the module `foo`. Note that importing private symbols is +generally not recommended. + +See also the experimental `importutils `_ module. Include statement -----------------