T
Thomas Aanensen
Hi
I would like to find all the method calls done by a specified class on an
object.
#I have an object:
self.o = SomeObject()
#Then I do a method call
self.o.GetAValue()
What I need is to parse the class to find all the method calls done by
self.o (The name of the method being called is whats important)
Thomas
I would like to find all the method calls done by a specified class on an
object.
#I have an object:
self.o = SomeObject()
#Then I do a method call
self.o.GetAValue()
What I need is to parse the class to find all the method calls done by
self.o (The name of the method being called is whats important)
Thomas