Re: How to check for instances of a class

2006-11-14 Thread erokar
That did the trick, thank you! -- http://mail.python.org/mailman/listinfo/python-list

Re: How to check for instances of a class

2006-11-14 Thread Gabriel Genellina
At Tuesday 14/11/2006 16:00, [EMAIL PROTECTED] wrote: Traversing a list of variables, I need to check wheter an element in the list is an instance of a (user defined) class. What cind of comparison operator can I use? Can't seem to find this in the documentation. I anyone have an example it is m

Re: How to check for instances of a class

2006-11-14 Thread Dennis Benzinger
On 14 Nov 2006 11:00:53 -0800 [EMAIL PROTECTED] wrote: > Traversing a list of variables, I need to check wheter an element in > the list is an instance of a (user defined) class. What cind of > comparison operator can I use? Can't seem to find this in the > documentation. I anyone have an example

How to check for instances of a class

2006-11-14 Thread erokar
Traversing a list of variables, I need to check wheter an element in the list is an instance of a (user defined) class. What cind of comparison operator can I use? Can't seem to find this in the documentation. I anyone have an example it is much appreciated. -- http://mail.python.org/mailman/list