Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

app/__ init__.py

from blah import test

app/x.py

from app import *

test()

Basically, I have an __init__.py file that contains a bunch of imports that will be used throughout the app. I've put them all in here to save me having to import them into each file (every file within this folder will use the same imports)

I'm wondering if that from app import * line is causing it to import itself as it is inside the app folder...

Am I doing this correctly?

share|improve this question

1 Answer

Subpackages and modules within a package are never imported when the package is imported unless they are explicitly imported within __init__.py. Even if they were, the most that would happen is that the module would contain a reference to itself, which is not considered a problem.

share|improve this answer
Ah, nice. Cheers. – dave Jan 9 '11 at 8:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.