Another use-case would be to make pickle faster. Of course, it is highly dependent on your data.
For example, I've seen 5%+ performance gain in my practice. I don't use pickle directly, but I use concurrent.features and David Beazley's Curio, which use multiprocessing, which in turn uses pickle
for data transfer.