Changeset 436 for elixir/trunk
- Timestamp:
- 12/18/08 14:08:10 (3 years ago)
- Files:
-
- 1 modified
-
elixir/trunk/elixir/collection.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/elixir/collection.py
r435 r436 8 8 # default entity collection 9 9 class EntityCollection(list): 10 def __init__(self , *args):10 def __init__(self): 11 11 # _entities is a dict of entities keyed on their name. 12 12 self._entities = {} 13 list.__init__(self , *args)13 list.__init__(self) 14 14 15 15 def append(self, entity):
