I know I can check if the object has a next method for it to be a generator, but I want some way using which I can determine the type of any object, not just generators.
Don't do this. It's simply a very, very bad idea.
Instead, do this:
try:
# Attempt to see if you have an iterable object.
for i in some_thing_which_may_be_a_generator:
# The real work on `i`
except TypeError:
# some_thing_which_may_be_a_generator isn't actually a generator
# do something else
In the unlikely event that the body of the for loop also has TypeErrors, there are several choices: (1) define a function to limit the scope of the errors, or (2) use a nested try block.
Or (3) something like this to distinguish all of these TypeErrors which are floating around.
try:
# Attempt to see if you have an iterable object.
# In the case of a generator or iterator iter simply
# returns the value it was passed.
iterator = iter(some_thing_which_may_be_a_generator)
except TypeError:
# some_thing_which_may_be_a_generator isn't actually a generator
# do something else
else:
for i in iterator:
# the real work on `i`
Or (4) fix the other parts of your application to provide generators appropriately. That's often simpler than all of this.
from types import GeneratorType;type(myobject, GeneratorType)will give you the proper result for objects of class 'generator'. But as Daenyth implies, that isn't necessarily the right way to go. – JAB Jun 20 '11 at 19:45__next__, you're actually accepting any iterator, not just generators - which is very likely what you want. – delnan Jun 20 '11 at 19:46isinstance(myobject, GeneratorType). – JAB Jun 20 '11 at 19:52