Closed
Description
statvfs was introduced in the following commit:
ec8cc1e
statvfs is not available on Windows as far as I can gather.
AttributeError: module 'os' has no attribute 'statvfs'
A simple fix may be something like:
if hasattr(os, 'statvfs'):
statvfs = wrap(os.statvfs)