Changeset 2292 for gaphas/trunk

Show
Ignore:
Timestamp:
04/07/08 07:28:46 (5 months ago)
Author:
arj..@yirdis.nl
Message:

normalized whitespace

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gaphas/trunk/gaphas/decorators.py

    r2234 r2292  
    1111import operator 
    1212 
     13 
    1314DEBUG_ASYNC = False 
     15 
    1416 
    1517class async(object): 
     
    109111        return wrapper 
    110112 
     113 
    111114def nonrecursive(func): 
    112115    """ 
     
    139142            del func._executing 
    140143    return wrapper 
     144 
    141145 
    142146class recursive(object):