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

Class Human
source code

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

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

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.