Changeset 1746
- Timestamp:
- Aug 23, 2005, 3:39:30 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/caching/caching.py
r1745 r1746 2240 2240 argstr = argstr + "'"+str(args)+"'" 2241 2241 else: 2242 # FIXME Have a truncation forlarge Numeric arrays before using str()2242 #Truncate large Numeric arrays before using str() 2243 2243 import Numeric 2244 2244 if type(args) == Numeric.ArrayType: 2245 2245 if len(args.flat) > textwidth: 2246 args = 'Array: %s' %args.shape2246 args = 'Array: ' + str(args.shape) 2247 2247 2248 2248 argstr = argstr + str(args)
Note: See TracChangeset
for help on using the changeset viewer.