Change unpopulated to always 0

This commit is contained in:
thetazero 2022-08-30 11:48:17 -04:00
parent 92c77013bf
commit 1a40757cdd
No known key found for this signature in database
GPG Key ID: E3B2C451593744ED
1 changed files with 5 additions and 5 deletions

View File

@ -170,11 +170,11 @@ MP_DEFINE_CONST_FUN_OBJ_1(os_rmdir_obj, os_rmdir);
//|
//|
//| * ``st_mode`` -- File type, regular or directory
//| * ``st_ino`` -- Unpopulated
//| * ``st_dev`` -- Unpopulated
//| * ``st_nlink`` -- Unpopulated
//| * ``st_uid`` -- Unpopulated
//| * ``st_gid`` -- Unpopulated
//| * ``st_ino`` -- Set to 0
//| * ``st_dev`` -- Set to 0
//| * ``st_nlink`` -- Set to 0
//| * ``st_uid`` -- Set to 0
//| * ``st_gid`` -- Set to 0
//| * ``st_size`` -- Size of the file in bytes
//| * ``st_atime`` -- Time of most recent access expressed in seconds
//| * ``st_mtime`` -- Time of most recent content modification expressed in seconds.