- Timestamp:
- May 8, 2020 1:28:15 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r84206 r84213 2257 2257 reporter.log2('Process (PID %d) got %d bytes of %s data (type: %s)' 2258 2258 % (iPid, len(abBuf), sFdNm, type(abBuf))); 2259 if isinstance(abBuf, memoryview): ## @todo Why is this happening? 2260 abBuf = abBuf.tobytes(); 2259 if isinstance(abBuf, str): 2260 pass; 2261 if sys.version_info >= (2, 7): 2262 if isinstance(abBuf, memoryview): ## @todo Why is this happening? 2263 abBuf = abBuf.tobytes(); 2261 2264 for sLine in abBuf.decode("utf-8").splitlines(): 2262 2265 reporter.log('%s: %s' % (sFdNm, sLine));
Note:
See TracChangeset
for help on using the changeset viewer.