You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure which output is the desired output. Line 264's test if (keywordData[nzeroidx] != 0x00): appears to be a bug, as b'\00' == 0x00 is false in both Python2 and Python3, but the code comments due imply that 0 truncation is desired.
In my opinion the Python2 behavior looks more desirable, as the XML represents the full data for binary fields.
The text was updated successfully, but these errors were encountered:
When running on python2, reverseVpd.py yields results like:
but on python3, everything is truncated:
I'm not sure which output is the desired output. Line 264's test
if (keywordData[nzeroidx] != 0x00):
appears to be a bug, asb'\00' == 0x00
is false in both Python2 and Python3, but the code comments due imply that 0 truncation is desired.In my opinion the Python2 behavior looks more desirable, as the XML represents the full data for binary fields.
The text was updated successfully, but these errors were encountered: