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
 
climb(self, tree)
Climb up the given tree. (Inherited from inh_example.Primate)
source code
 
eat(self, food)
Consume the given food object. (Inherited from inh_example.Animal)
source code
 
grab(self, object)
Grab hold of the given object. (Inherited from inh_example.Primate)
source code
 
run(self, dest)
Run to the given destination. (Inherited from inh_example.Mammal)
source code
 
sleep(self, time)
Sleep for the given period of time. (Inherited from inh_example.Animal)
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.