From: Georg Brandl Date: Sun, 6 Oct 2013 17:21:14 +0000 (+0200) Subject: Fix typo in example file name. Found by John Bokma on docs@. X-Git-Tag: v3.4.0a4~223^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac39addd72ec5184684d7fd9f8b0333bc12ae0b7;p=thirdparty%2FPython%2Fcpython.git Fix typo in example file name. Found by John Bokma on docs@. --- diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst index a5349e3bb386..547eeaa1157a 100644 --- a/Doc/tutorial/modules.rst +++ b/Doc/tutorial/modules.rst @@ -478,7 +478,7 @@ list of module names that should be imported when ``from package import *`` is encountered. It is up to the package author to keep this list up-to-date when a new version of the package is released. Package authors may also decide not to support it, if they don't see a use for importing \* from their package. For -example, the file :file:`sounds/effects/__init__.py` could contain the following +example, the file :file:`sound/effects/__init__.py` could contain the following code:: __all__ = ["echo", "surround", "reverse"]