weird isinstance/issubclass behavior?

L

lars van gemerden

Hi,

I have encountered some strange behavior of isinstance(/issubclass): depending on the import path used for classes i get different output, while the classes i compare are in the same file.

Basically if i import a class as:

from mod1.mod2 import A

or:

from mod0.mod1.mod2 import A

which both result in importing the same class, a call to isinstance(inst, A) in another module can have a different output. In this module

print type(inst), A, isinstance(inst, A), issubclass(type(inst), A)

gives:

<class 'mod0.mod1.mod2.A'> <class 'mod1.mod2.A'> False False

resp.

<class 'mod0.mod1.mod2.A'> <class 'mod0.mod1.mod2.A'> True True

which seems somewhat logical, but in my case a strange gotcha. My question is:
Is this intended, inevitable or a bug?

Cheers, Lars

PS: this is somewhat simpler than the actual case i've encountered, and i haven't tested this exact case, but for now i hope this is enough to get some of your insight.
 
C

Chris Angelico

Basically if i import a class as:

from mod1.mod2 import A

or:

from mod0.mod1.mod2 import A

which both result in importing the same class, a call to isinstance(inst, A) in another module can have a different output.

What you may be seeing there is that you've imported the module twice.
There are two entirely separate module objects, taken from the same
file. Something instantiated from one class isn't an instance of the
other class even if they're indistinguishable classes; a little
monkeypatching might show you what's going on (fiddle with one class,
check the other, fiddle hasn't happened).

As a general rule, importing a module in different ways is considered
dangerous. Be consistent, and then this sort of oddity won't occur -
and you also won't have other oddities, eg with other global state.

ChrisA
 
L

lars van gemerden

Hi,



I have encountered some strange behavior of isinstance(/issubclass): depending on the import path used for classes i get different output, while the classes i compare are in the same file.



Basically if i import a class as:



from mod1.mod2 import A



or:



from mod0.mod1.mod2 import A



which both result in importing the same class, a call to isinstance(inst, A) in another module can have a different output. In this module



print type(inst), A, isinstance(inst, A), issubclass(type(inst), A)



gives:



<class 'mod0.mod1.mod2.A'> <class 'mod1.mod2.A'> False False



resp.



<class 'mod0.mod1.mod2.A'> <class 'mod0.mod1.mod2.A'> True True



which seems somewhat logical, but in my case a strange gotcha. My question is:

Is this intended, inevitable or a bug?



Cheers, Lars



PS: this is somewhat simpler than the actual case i've encountered, and i haven't tested this exact case, but for now i hope this is enough to get some of your insight.

I know for sure that the imports both import the same file, though if i understand you correctly, it creates 2 different module objects? Are module object only created on an import statement?

The 2 parameters of isinstance() follow a very different import path.

Anyway, to not spend too much time us this, i'll just file it under 'dangerous' and use the second import statement. It does solve my problem.

Thanks, Lars
 
T

Terry Reedy

Hi,

I have encountered some strange behavior of isinstance(/issubclass): depending on the import path used for classes i get different output, while the classes i compare are in the same file.

Basically if i import a class as:

from mod1.mod2 import A
or:
from mod0.mod1.mod2 import A

which both result in importing the same class,

As other said, both import the same abstract class but create two
different concrete class objects.
a call to isinstance(inst, A) in another module can have a different output.
In this module
print type(inst), A, isinstance(inst, A), issubclass(type(inst), A)
gives:
<class 'mod0.mod1.mod2.A'> <class 'mod1.mod2.A'> False False

Add print id(type(inst)), id(A) and you will see that they are different
objects. The isinstance and issubclass calls compare the classes by
identity (the default meaning of ==) and so False, False are correct.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,050
Latest member
AngelS122

Latest Threads

Top