Replacement for pickle.dump() using ForkingPickler.
(obj, file, protocol=None)
| 56 | register = ForkingPickler.register |
| 57 | |
| 58 | def dump(obj, file, protocol=None): |
| 59 | '''Replacement for pickle.dump() using ForkingPickler.''' |
| 60 | ForkingPickler(file, protocol).dump(obj) |
| 61 | |
| 62 | # |
| 63 | # Platform specific definitions |
nothing calls this directly
no test coverage detected