I would like to know if it's possible to check if a variable is this type:
<type 'gtk.gdk.PixbufLoader'>
with a line like:
if type(var) == 'gtk.gdk.PixbufLoader': # pseudocode
print "Found!"
Thanks
I would like to know if it's possible to check if a variable is this type:
<type 'gtk.gdk.PixbufLoader'>
with a line like:
if type(var) == 'gtk.gdk.PixbufLoader': # pseudocode
print "Found!"
Thanks