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
The Integer codec is not meant to preserve length: it's for bijections on range(10**(length+1)).
If you want leading zeros to be significant (and preserve length) you can use the String codec instead:
The Integer codec does not preserve length if the pre-unpack encoded string contains leading 0's as those get stripped by the conversion to int.
The text was updated successfully, but these errors were encountered: