Make os.statvfs_result inherit from typing.NamedTuple. (#3603)

This commit is contained in:
Rebecca Chen
2020-01-10 13:42:29 -08:00
committed by Sebastian Rittau
parent b25454a76c
commit 3b3fc6a57f
2 changed files with 3 additions and 6 deletions

View File

@@ -270,7 +270,7 @@ else:
if sys.platform != 'win32':
class statvfs_result: # Unix only
class statvfs_result(NamedTuple): # Unix only
f_bsize: int
f_frsize: int
f_blocks: int