- Timestamp:
- Mar 24, 2020 2:43:42 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testmanager/core/db.py
r83358 r83382 110 110 oValue = dbTimestampToZuluDatetime(oValue); 111 111 return oValue - datetime.timedelta(microseconds = 1); 112 113 def dbTimestampPlusOneTick(oValue): 114 """ 115 Returns a new timestamp that's one tick after the given one. 116 """ 117 oValue = dbTimestampToZuluDatetime(oValue); 118 return oValue + datetime.timedelta(microseconds = 1); 112 119 113 120 def isDbInterval(oValue):
Note:
See TracChangeset
for help on using the changeset viewer.