From: Shu <23287722+susan-shu-c@users.noreply.github.com> Date: Fri, 8 Nov 2019 20:26:35 +0000 (-0500) Subject: Clarify amount of dots between package and subpackage (GH-17092) X-Git-Tag: v3.9.0a1~65 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fc6b1bf869be9fd89c19faf8d12fa473ce5222c8;p=thirdparty%2FPython%2Fcpython.git Clarify amount of dots between package and subpackage (GH-17092) --- diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst index 0228bfb7e984..5cce8ceaa3cb 100644 --- a/Doc/reference/import.rst +++ b/Doc/reference/import.rst @@ -83,7 +83,7 @@ module. Specifically, any module that contains a ``__path__`` attribute is considered a package. All modules have a name. Subpackage names are separated from their parent -package name by dots, akin to Python's standard attribute access syntax. Thus +package name by a dot, akin to Python's standard attribute access syntax. Thus you might have a module called :mod:`sys` and a package called :mod:`email`, which in turn has a subpackage called :mod:`email.mime` and a module within that subpackage called :mod:`email.mime.text`.