Theelx
Theelx
Thanks for reporting this! I'm unsure how to properly handle this while maintaining backwards-compatibility though, since this seems like behavior that some people would rely on. I know that the...
Apologies for the slow response, I've been busy with classes lately. This is most likely a bug, I'll look into this.
Update: This is definitely a bug, and it'll be hard to fix. Pandas doesn't have a string dtype, only an object dtype, so it's hard for jsonpickle's pandas extension to...
Update 2: I just realized this'll be harder to fix than I previously thought, since the lists can contain more than one dtype. For example, one could have a dataframe...
Apparently this is basically the same issue as #358.
Oh, if that works I'd be happy to merge it! I'll try and test it over the next few days, thanks so much for giving some example code!
Hm, breaking on a special character isn't a good idea for library code. I'll try to change the behavior so it works for everything.
Can you give an MRE (minimal reproducible example), with the versions of jsonpickle and python being used?
That's really interesting, thanks for reporting! I did a bit of further digging, and it seems that before bro gets encoded, `bro.func` is of type `function`, and after it is...
Stefan is correct on all of those issues. Please run `black .` and `isort . --profile black` from the command line on the code for proper formatting. You can install...