From: Matt Davis Date: Mon, 18 Jun 2012 01:51:38 +0000 (-0400) Subject: Minor changes to SoftwareEngineering README. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f9bef8e764d7d3052efb413d736ecd65751502df;p=swc-testing-nose.git Minor changes to SoftwareEngineering README. --- diff --git a/4-SoftwareEngineering/README.rst b/4-SoftwareEngineering/README.rst index cf4b880..7f175b4 100644 --- a/4-SoftwareEngineering/README.rst +++ b/4-SoftwareEngineering/README.rst @@ -11,9 +11,9 @@ add features to the function. The ideal solution would be to keep the function in one spot and use it over and over again from many different places. Python modules to the rescue! -Today we're going to move beyond the IPython notebook. Most Python code is +We're going to move beyond the IPython notebook. Most Python code is stored in `.py` files and then used in other `.py` files where it has been -pulled in using an `import` statement. +pulled in using an `import` statement. Today we'll show you how to do that. ========= Exercises