From f7443fa16374bd25d6b38140e988c26a887d6934 Mon Sep 17 00:00:00 2001 From: Jovina Date: Tue, 13 Sep 2011 17:16:45 +0530 Subject: Minor changes to files 'modules.rst' & 'rst.rst' . --- advanced_python/modules.rst | 2 +- advanced_python/rst.rst | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/advanced_python/modules.rst b/advanced_python/modules.rst index 833334d..f3df676 100644 --- a/advanced_python/modules.rst +++ b/advanced_python/modules.rst @@ -89,7 +89,7 @@ And run the script, Yes! it worked. So what did we do? We actually imported the required functions and keywords, using ``import``. -By using the *, we are asking python to import everything from the +By using the * , we are asking python to import everything from the ``scipy`` and ``pylab`` modules. This isn't a good practice, as 1. it imports a lot of unnecessary things 2. the two modules may have functions with the same name, which would diff --git a/advanced_python/rst.rst b/advanced_python/rst.rst index a43f5a3..fcbd986 100644 --- a/advanced_python/rst.rst +++ b/advanced_python/rst.rst @@ -1,5 +1,5 @@ ReST -==== +---- ---------------------------- The Pythonic way to Document @@ -242,7 +242,7 @@ Links `A Title`_ automatically generates hyperlink targets. - + in Sphinx :: + + in Sphinx :: :ref: `This is an example ` link. This is an :ref: `example` link. @@ -250,7 +250,6 @@ Links Footnotes --------- - :: This[#]_ gives auto-numbered[#]_ footnotes. -- cgit