Changeset 2292
- Timestamp:
- 04/07/08 07:28:46 (3 months ago)
- Files:
-
- gaphas/trunk/gaphas/decorators.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphas/trunk/gaphas/decorators.py
r2234 r2292 11 11 import operator 12 12 13 13 14 DEBUG_ASYNC = False 15 14 16 15 17 class async(object): … … 109 111 return wrapper 110 112 113 111 114 def nonrecursive(func): 112 115 """ … … 139 142 del func._executing 140 143 return wrapper 144 141 145 142 146 class recursive(object):
