User John B - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T04:50:07Zhttp://stackoverflow.com/feeds/user/9597http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/72852/how-to-do-relative-imports-in-python/73149#7314913Answer by John B for How to do relative imports in Python?John B2008-09-16T14:48:56Z2009-09-28T19:02:44Z<p>Everyone seems to want to tell you what you should be doing rather than just answering the question.</p>
<p>The problem is that you're running the module as '__main__' by passing the mod1.py as an argument to the interpreter.</p>
<p>From <a href="http://www.python.org/dev/peps/pep-0328/" rel="nofollow">PEP 328</a>:</p>
<blockquote>
<p>Relative imports use a module's __name__ attribute to determine that module's position in the package hierarchy. If the module's name does not contain any package information (e.g. it is set to '__main__') then relative imports are resolved as if the module were a top level module, regardless of where the module is actually located on the file system.</p>
</blockquote>
<p>In Python 2.6, they're adding the ability to reference modules relative to the main module. <a href="http://python.org/dev/peps/pep-0366/" rel="nofollow">PEP 366</a> describes the change.</p>
http://stackoverflow.com/questions/77723/recommended-projects-for-beginning-programmers/77866#778661Answer by John B for Recommended projects for beginning programmers?John B2008-09-16T22:18:17Z2008-09-16T22:18:17Z<p>There are a couple existing questions similar to this. I recommend reviewing the questions with <a href="http://stackoverflow.com/questions/tagged/practice">practice</a> and <a href="http://stackoverflow.com/questions/tagged/challenge">challenge</a> tags for additional ideas.</p>
http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72559#7255912Answer by John B for What development book made the most impact on you as a developer?John B2008-09-16T14:00:06Z2008-09-16T14:00:06Z<p>There are similar questions <a href="http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read">here</a> and <a href="http://stackoverflow.com/questions/559/what-books-would-you-recommend-for-a-beginning-software-developer">here</a>.</p>
http://stackoverflow.com/questions/66037/challenge-sites/66083#660831Answer by John B for Challenge SitesJohn B2008-09-15T19:40:23Z2008-09-15T19:40:23Z<p>I had a lot of fun with the <a href="http://www.pythonchallenge.com/" rel="nofollow">Python Challenge</a>. For the most part, it is language agnostic, but there are a few problems which require python libraries.</p>
http://stackoverflow.com/questions/72852/how-to-do-relative-imports-in-pythonComment by John B on How to do relative imports in Python?John B2008-09-16T19:36:03Z2008-09-16T19:36:03ZI recommend updating your question to make it more clear that you're describing the issue addressed in PEP 366.