Skip to content

Commit 1a40757

Browse files
committed
Change unpopulated to always 0
1 parent 92c7701 commit 1a40757

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

shared-bindings/os/__init__.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -170,11 +170,11 @@ MP_DEFINE_CONST_FUN_OBJ_1(os_rmdir_obj, os_rmdir);
170170
//|
171171
//|
172172
//| * ``st_mode`` -- File type, regular or directory
173-
//| * ``st_ino`` -- Unpopulated
174-
//| * ``st_dev`` -- Unpopulated
175-
//| * ``st_nlink`` -- Unpopulated
176-
//| * ``st_uid`` -- Unpopulated
177-
//| * ``st_gid`` -- Unpopulated
173+
//| * ``st_ino`` -- Set to 0
174+
//| * ``st_dev`` -- Set to 0
175+
//| * ``st_nlink`` -- Set to 0
176+
//| * ``st_uid`` -- Set to 0
177+
//| * ``st_gid`` -- Set to 0
178178
//| * ``st_size`` -- Size of the file in bytes
179179
//| * ``st_atime`` -- Time of most recent access expressed in seconds
180180
//| * ``st_mtime`` -- Time of most recent content modification expressed in seconds.

0 commit comments

Comments
 (0)