mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
Make os.statvfs_result inherit from typing.NamedTuple. (#3603)
This commit is contained in:
committed by
Sebastian Rittau
parent
b25454a76c
commit
3b3fc6a57f
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user