How would I detect object recursing(that may not be the real term for it)? For example, I have: class myObject(): def myFunct(param) tempObj = myObject() tempObj.myFunct(tempObj) How would tempObj.myFunct determine that its own object was passed to it? Ken Ken