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.

I have the following stacktrace when I try to import ModuleA:

    Traceback (most recent call last):                                                          
  File "menu.py", line 9, in <module>                                                       
    from tmserver import Module1                                                          
  File "~/tmserver/Module1.py", line 10, in <module>                                                                           
    from tmserver.PackageA import ModuleA                                             
  File "~/tmserver/Package1/ModuleA.py", line 8, in <module>                                                               
    from tmserver.Package2 import Module2                                               
  File "~/tmserver/Package2/Module2.py", line 15, in <module>                                                                
    from tmserver.Package3 import Module3                                                      
  File "~/tmserver/Package3/Module3.py", line 5, in <module>                                                                        
    from tmserver.PackageA import ModuleA                                            
ImportError: cannot import name ModuleA

Is this because it's importing ModuleA again/recursively?

share|improve this question
Maybe you have two different files called tmserver? You can add some prints to debug that, along with sys.path... Still weird. – TryPyPy Jan 16 '11 at 18:30
1  
See section 'Circular imports' here effbot.org/zone/import-confusion.htm for a good explanation of what is going wrong in your setup – möter Jan 16 '11 at 22:32

1 Answer

up vote 3 down vote accepted

That would seem like the logical conclusion; perhaps if you posted samples of the code you were running you'd be able to get a better reply?

share|improve this answer
2  
+1 but there is no need to post more code. It's all in the stacktrace. On importing ModuleA, before the rest of the imports are finished (and thus ModuleA wasn't fully loaded) it gets to try to import ModuleA again. Infinite recursion. – möter Jan 16 '11 at 22:21

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.