Changeset 82634 in vbox
- Timestamp:
- Dec 22, 2019 6:52:21 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/report.py
r79087 r82634 466 466 """ Discards rows with zero sum hits across all periods. Works around lazy selects counting both totals and hits. """ 467 467 cDeleted = 0; 468 aidKeys = self.dcHitsPerId.keys();468 aidKeys = list(self.dcHitsPerId); 469 469 for idKey in aidKeys: 470 470 if self.dcHitsPerId[idKey] == 0:
Note:
See TracChangeset
for help on using the changeset viewer.