<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">"""Constants used by PyFilesystem.
"""

import io

DEFAULT_CHUNK_SIZE = io.DEFAULT_BUFFER_SIZE * 16
"""`int`: the size of a single chunk read from or written to a file.
"""
</pre></body></html>