vote up 1 vote down star
1

Duplicate: What’s the canonical way to check for type in python?

How do I check for type equality in IronPython?

I need the equivalent of the following C# code in IronPython:

if (x.GetType() == typeof(xType))

or

if (x is xType)
flag

I voted to close: "exact duplicate". Please see stackoverflow.com/questions/152580/…. – Andrew Hare May 8 at 15:29
Ehhh... not exactly a duplicate. I really wasn't looking for the pythonic way to do it. I was looking for the IronPythonic way of doing it - that is, using the .NET framework (or how to use the is keyword in IP.) – Josh Kodroff May 8 at 15:32
If you're looking for a pythonic way of doing it, don't do it! Type checking is very anti-pythonic. If you receive a type that doesn't work, the code will explode leaving the caller to pickup the pieces. – EvilRyry Jul 8 at 20:43

2 Answers

vote up 0 vote down

Say C is a static class, not fully qualified but imported into the iron python script x is an instance of C And A.B.C is the fully qualified name

Why don't these work?

x.GetType() == Type.GetType("A.B.C")

OR

x is Type.GetType("A.B.C")

OR

x is C

OR

x.GetType() == Type.GetType(C)
link|flag
I ended up doing this: x.GetType().Name == "C" – pbartek Jul 8 at 21:51
vote up 1 vote down check
from System import *
if x.GetType() == Type.GetType(xType):
link|flag

Your Answer

Get an OpenID
or

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