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
TIBRVMSG_I8 handling references self.data.i8.value but should instead just reference self.data.i8. The 'value' attribute is not valid as the value is stored at the 'i8' level. This same error exists in the other signed and unsigned numeric types. Removing the '.value' suffix fixes the issue.
Likewise, the DATETIME handler doesn't work as the 'value' attribute does not exist for the date.sec and date.nsec fields. This type handler has an additional problem as 'obj.data=dt' fails with: "AttributeError: can't set attribute".
The text was updated successfully, but these errors were encountered:
TIBRVMSG_I8 handling references self.data.i8.value but should instead just reference self.data.i8. The 'value' attribute is not valid as the value is stored at the 'i8' level. This same error exists in the other signed and unsigned numeric types. Removing the '.value' suffix fixes the issue.
Likewise, the DATETIME handler doesn't work as the 'value' attribute does not exist for the date.sec and date.nsec fields. This type handler has an additional problem as 'obj.data=dt' fails with: "AttributeError: can't set attribute".
The text was updated successfully, but these errors were encountered: