Package concert_conductor :: Module conductor :: Class Conductor
[frames] | no frames]

Class Conductor

source code

object --+
         |
        Conductor

Instance Methods
 
__init__(self)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
invite(self, concert_name, clientnames, ok_flag) source code
 
spin(self)
Maintains the clientele list.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties

Inherited from object: __class__

Method Details

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

spin(self)

source code 

Maintains the clientele list. We have to manage for two kinds here. Currently I use the same class interface for both with just a flag to differentiate, but it could probably use a split somewhere in the future.