hello
index
/home/andrei/activesolutions/as-cvs/present-python/examples/hello/hello.py

  A simple module containing one Hello class

 
Modules
            
sys
 
Classes
            
Hello
 
class Hello
       Can say "Hello"
                
Attributes: 
_name - the person's name to say hello to
 
   Methods defined here:
__init__(self, name)
 Sets the class' private attribute _name to <name>
                                                                    
Attributes :
name - a person's name
say_it(self)
 Says "Hello" to '_name'

Data and non-method functions defined here:
__doc__ = ' Can say "Hello"\n\t\t\t\n Attributes: \n _name - the person\'s name to say hello to\n '
__module__ = 'hello'
_name = 'unknown'
 
Data
             __file__ = './hello.py'
__name__ = 'hello'
h = <hello.Hello instance>