Hi,<div><br></div><div>hope this mailing list is still active.</div><div><br></div><div>I&#39;m learning phyton. I can write simple programs, and i&#39;ve studied all examples provided by the Google App Engine Documentation.</div>
<div><br></div><div>As i understood, i can import a module using something like:</div><div><br></div><div>import modulename</div><div><br></div><div>Or, import a specific function, using:</div><div><br></div><div>from modulename import functionname</div>
<div><br></div><div>Ok, now let&#39;s look at the first example provided by google:</div><div><br></div><div><a href="http://code.google.com/intl/it-IT/appengine/docs/python/gettingstarted/usingwebapp.html">http://code.google.com/intl/it-IT/appengine/docs/python/gettingstarted/usingwebapp.html</a><br>
</div><div><br></div><div>I can see those lines:</div><div><br></div><div><div>from google.appengine.ext import webapp</div><div>from google.appengine.ext.webapp.util import run_wsgi_app</div><div><br></div><div>The first line imports the webapp subpackage (that is not actually a module, it&#39;s a subdirectory with some .py files into). So why do i need to import the specific function in the second line? Does&#39;nt it get imported in the first?</div>
<div><br></div><div>Thankyou for your help.</div></div>