User John B - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T04:50:07Z http://stackoverflow.com/feeds/user/9597 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72852/how-to-do-relative-imports-in-python/73149#73149 13 Answer by John B for How to do relative imports in Python? John B 2008-09-16T14:48:56Z 2009-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#77866 1 Answer by John B for Recommended projects for beginning programmers? John B 2008-09-16T22:18:17Z 2008-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#72559 12 Answer by John B for What development book made the most impact on you as a developer? John B 2008-09-16T14:00:06Z 2008-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#66083 1 Answer by John B for Challenge Sites John B 2008-09-15T19:40:23Z 2008-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-python Comment by John B on How to do relative imports in Python? John B 2008-09-16T19:36:03Z 2008-09-16T19:36:03Z I recommend updating your question to make it more clear that you're describing the issue addressed in PEP 366.