joblib.dump
doesn't seem to do anything for me whatsoever. Possibly I'm having some versioning conflicts or something. Any help is appreciated.
My joblib version: 0.13.2
Seems to affect 0.14.0 as well
To reproduce:
import joblib
import os
foo = open("bar", "w+b")
joblib.dump("test", foo)
print(os.stat("bar").st_size)
#prints 0... expect the size of a file containing the pickled string "test" > 0 bytes