<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">Hello<br><br>I frequent the PyGtk mailing list all the time, but this is the first time I am posting here =)<br><br>I wanted to know if imported classes are treated differently than internal classes.<br><br>I have attached a minimal example which points out what I mean. Essentially, if I create a class:<br><br>class A():<br> __init__(self):<br>  pass<br><br>and call A, or A() I get something to the effect of  <__main__.A instance at 0xb7f088ac><br><br>but if I call from module_name import A and then call A or A() I get something to the effect of  <module_4.module_4 instance at 0xb7f0882c><br><br>I was wondering if this would be a problem.<br><br>I have included the test_import.py file as well as 4 module files which it loads. Save the tes_import.py file to a folder, create another folder there, and save ONLY the 4 modules files
 to that new folder. In the code, update line 26 to reflect to path of the newly created directory<br><br>Thanks in advanced<br><br><br>Peyman<br><br></td></tr></table>