Module inh_example :: Class Human
[hide private]
[frames] | no frames]

Class Human

source code

Animal --+        
         |        
    Mammal --+    
             |    
       Primate --+
                 |
                Human
Known Subclasses:

Instance Methods [hide private]
 
talk(self, animal)
Talk to the given animal.
source code
    Inherited from Primate
 
climb(self, tree)
Climb up the given tree.
source code
 
grab(self, object)
Grab hold of the given object.
source code
    Inherited from Mammal
 
run(self, dest)
Run to the given destination.
source code
    Inherited from Animal
 
eat(self, food)
Consume the given food object.
source code
 
sleep(self, time)
Sleep for the given period of time.
source code
Method Details [hide private]

talk(self, animal)

source code 

Talk to the given animal. Depending on what kind of creature animal is, it may or may not be responsive.