- Timestamp:
- 08/16/05 15:25:32 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Release-2-fixes/python/asapmath.py
r582 r662 22 22 # all correlator cycles 23 23 scanav = average_time(scan, scanav=True) 24 25 24 """ 26 25 scanAv = False … … 34 33 mask = kwargs.get('mask') 35 34 varlist = vars() 36 lst = tuple(args) 35 if isinstance(args[0],list): 36 lst = tuple(args[0]) 37 elif isinstance(args[0],tuple): 38 lst = args[0] 39 else: 40 lst = tuple(args) 41 37 42 del varlist["kwargs"] 38 43 varlist["args"] = "%d scantables" % len(lst)
Note:
See TracChangeset
for help on using the changeset viewer.