Fix bug with opening pickle files from a pickle created in another operating system (for Windows and Linux only) #29
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "fix_multi_os_pickle_load_bug"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When a pickle is created in Windows and you try to load it in Linux or when a pickle is created in Linux and you try to load it into Windows using
The library errors out due to pathlib encoding the OS from the other operating system. By adding the conditionals, this issue is resolved between Linux and Windows.