Package bosco :: Module runner :: Class Team
[hide private]
[frames] | no frames]

Class Team

source code

              object --+    
                       |    
ranking.RankableItem --+    
                       |    
          AbstractRunner --+
                           |
                   ??-45 --+
                           |
                          Team

Instance Methods [hide private]
 
__init__(self, number, name, category, responsible=None, official=True)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__str__(self)
str(x)
source code
 
__unicode__(self) source code
 
_get_runs(self) source code
 
runs(self) source code

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

Inherited from ranking.RankableItem: complete, finish, start

Inherited from ranking.RankableItem (private): _get_complete

Class Variables [hide private]
  __storm_table__ = 'team'
  id = Int(primary= True)
  number = Unicode()
  name = Unicode()
  official = Bool()
  override = Int()
  _responsible_id = Int(name= 'responsible')
  responsible = Reference(_responsible_id, 'Runner.id')
  _category_id = Int(name= 'category')
  category = Reference(_category_id, 'Category.id')
  members = ReferenceSet(id, 'Runner._team_id')

Inherited from AbstractRunner: sicards

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, number, name, category, responsible=None, official=True)
(Constructor)

source code 

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

Overrides: object.__init__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: ranking.RankableItem.__str__