show/hide this revision's text 3 edited tags
show/hide this revision's text 2 added 185 characters in body

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)
show/hide this revision's text 1

How do I check for type equality (is operator or x.GetType() == typeof(xType)) in IronPython?

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)