From 553bddd122add88bf277634b3423743576c62fb7 Mon Sep 17 00:00:00 2001 From: cif2cif Date: Tue, 16 Feb 2016 11:39:54 +0100 Subject: [PATCH] Corrected typos --- python/1__10_Modules_Packages.ipynb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/python/1__10_Modules_Packages.ipynb b/python/1__10_Modules_Packages.ipynb index dcae4b3..da96015 100644 --- a/python/1__10_Modules_Packages.ipynb +++ b/python/1__10_Modules_Packages.ipynb @@ -31,7 +31,7 @@ "\n", "*Packages* contain subpackages of modules. They are directories and provide the namespace for modules.\n", "\n", - "For example, let's have this package sound, a subpackage effects and the modules echo and surround:\n", + "For example, let's have this package babel, a subpackage messages and the modules plurals and catalog:\n", "\n", "\n", "babel/\n", @@ -98,7 +98,9 @@ "source": [ "To write a module, it is just needed to include the code in a file ended with \".py\" and the name of the file is the name of the module.\n", "\n", - "Packages are directories that should have a file \\_\\_.init\\_\\_.py, that can be an empty file or contain initialization code." + "Packages are directories that should have a file \\_\\_.init\\_\\_.py, that can be an empty file or contain initialization code.\n", + "\n", + "Read this if you want to distribute your modules [https://wiki.python.org/moin/CheeseShopTutorial]" ] }, {