1
0
mirror of https://github.com/gsi-upm/sitc synced 2024-09-28 16:11:42 +00:00

Corrected typos

This commit is contained in:
cif2cif 2016-02-16 11:39:54 +01:00
parent 2b50ac848e
commit 553bddd122

View File

@ -31,7 +31,7 @@
"\n", "\n",
"*Packages* contain subpackages of modules. They are directories and provide the namespace for modules.\n", "*Packages* contain subpackages of modules. They are directories and provide the namespace for modules.\n",
"\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",
"<code>\n", "<code>\n",
"babel/\n", "babel/\n",
@ -98,7 +98,9 @@
"source": [ "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", "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", "\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]"
] ]
}, },
{ {