Show
Ignore:
Timestamp:
06/19/08 15:35:21 (4 years ago)
Author:
ged
Message:

removed trailing spaces

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/elixir/statements.py

    r311 r347  
    33MUTATORS = '__elixir_mutators__' 
    44 
    5 class ClassMutator(object):     
     5class ClassMutator(object): 
    66    ''' 
    77    DSL-style syntax 
    8      
     8 
    99    A ``ClassMutator`` object represents a DSL term. 
    1010    ''' 
    11      
     11 
    1212    def __init__(self, handler): 
    1313        ''' 
     
    1616        ''' 
    1717        self.handler = handler 
    18      
     18 
    1919    # called when a mutator (eg. "has_field(...)") is parsed 
    2020    def __call__(self, *args, **kwargs): 
     
    2828    def process(self, entity, *args, **kwargs): 
    2929        ''' 
    30         Process one mutator. This version simply calls the handler callable,  
     30        Process one mutator. This version simply calls the handler callable, 
    3131        but another mutator (sub)class could do more processing. 
    3232        ''' 
     
    3737def process_mutators(entity): 
    3838    ''' 
    39     Apply all mutators of the given entity. That is, loop over all mutators  
     39    Apply all mutators of the given entity. That is, loop over all mutators 
    4040    in the class's mutator list and process them. 
    4141    '''