[issue40074] pickle module dump and load: add support for string file names
Diego Palacios added the comment: In this case two new functions should be added to the pickle function. I think they would be very useful and many users would make use of them. -- ___ Python tracker <https://bugs.python.org/issue40
[issue40074] pickle module dump and load: add support for string file names
New submission from Diego Palacios : The pickle functions dump and load are often used in the following lines: ```python import pickle fname = '/path/to/file.pickle' with open(fname, 'rb') as f: object = pickle.load(f) ``` The load function should also accept a f