(path)
| 10 | logger = logging.getLogger(__name__) |
| 11 | |
| 12 | def pload(path): |
| 13 | with open(path, 'rb') as f: |
| 14 | res = pickle.load(f) |
| 15 | print('load path = {} object'.format(path)) |
| 16 | return res |
| 17 | |
| 18 | def pstore(x, path): |
| 19 | with open(path, 'wb') as f: |
no outgoing calls
no test coverage detected