Changeset 12753 in vbox
- Timestamp:
- Sep 25, 2008 3:51:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/python/sample/shellcommon.py
r12752 r12753 108 108 valsStr = '[ ' 109 109 for j in range(0, lens[i]): 110 valsStr += str(vals[i dxs[i]])+' '110 valsStr += str(vals[int(idxs[i])+j])+' ' 111 111 valsStr += ']' 112 112 print names[i],valsStr … … 297 297 valsStr = '[ ' 298 298 for j in range(0, lens[i]): 299 valsStr += str(vals[i dxs[i]])+' '299 valsStr += str(vals[int(idxs[i])+j])+' ' 300 300 valsStr += ']' 301 301 print names[i],valsStr
Note:
See TracChangeset
for help on using the changeset viewer.