diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 09:09:02 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 09:09:02 (GMT) |
commit | 9c45050300754c37c2844ece85c84b98532ce1df (patch) | |
tree | 3f12701e7712157b4bb1094f30d41a4ef61ed705 /Doc/tutorial | |
parent | 8ae2ab5d532c331d50e3e2ae1ffd67bab1478bb6 (diff) | |
parent | 22a1fd75cce74638130bbfebce85a5f01b3d5e81 (diff) | |
download | cpython-9c45050300754c37c2844ece85c84b98532ce1df.zip cpython-9c45050300754c37c2844ece85c84b98532ce1df.tar.gz cpython-9c45050300754c37c2844ece85c84b98532ce1df.tar.bz2 |
merge with 3.3
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/modules.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst index 99e15bc..1ddf09c 100644 --- a/Doc/tutorial/modules.rst +++ b/Doc/tutorial/modules.rst @@ -378,7 +378,9 @@ There are also many different operations you might want to perform on sound data (such as mixing, adding echo, applying an equalizer function, creating an artificial stereo effect), so in addition you will be writing a never-ending stream of modules to perform these operations. Here's a possible structure for -your package (expressed in terms of a hierarchical filesystem):: +your package (expressed in terms of a hierarchical filesystem): + +.. code-block:: text sound/ Top-level package __init__.py Initialize the sound package |