Open KBassford opened 4 years ago
Hi @KBassford, thanks for filing this issue. Yeah, the repr
functions are definitely not uniformly up-to-date. The original intent was to support basic serialization to string form as opposed to a full-blown pickle
object. However, we've run into various issues in the past successfully re-instantiating objects from their repr
form. At this point I'm leaning away from repr
and would prefer a different serialization method (like pickle
), beyond the existing KMIP binary serialization obviously.
Just a heads up.
Ouch! I've been using pydbus and one of the most annoying habits is that it tries to eval on variant types, which fails 9 times out of 10. That's why I flattened it to a repr. :(
Hi Peter,
Folks over here were nice enough to let me work on this, so I forked the project and I am incrementally going through and fixing what I find. First bug fix is already pushed, branch name "bug-637a".
Hi Peter,
I've been transporting some KMIP objects across DBus and I've encountered a problem that I presume is due to stuff falling by the wayside. For example:
yet below this ...
when it should be ...
I would do a pull and correct the ones I spot myself, but I'm a little rushed for time at the moment.