We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5286b4 commit 92c7701Copy full SHA for 92c7701
1 file changed
shared-bindings/os/__init__.c
@@ -166,15 +166,15 @@ MP_DEFINE_CONST_FUN_OBJ_1(os_rmdir_obj, os_rmdir);
166
//| def stat(path: str) -> Tuple[int, int, int, int, int, int, int, int, int, int]:
167
//| """Get the status of a file or directory.
168
//|
169
-//| Returns a tuple with the status of a file or directory in the following order,
170
-//|
+//| Returns a tuple with the status of a file or directory in the following order:
+//|
171
172
//| * ``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
+//| * ``st_dev`` -- Unpopulated
+//| * ``st_nlink`` -- Unpopulated
+//| * ``st_uid`` -- Unpopulated
+//| * ``st_gid`` -- Unpopulated
178
//| * ``st_size`` -- Size of the file in bytes
179
//| * ``st_atime`` -- Time of most recent access expressed in seconds
180
//| * ``st_mtime`` -- Time of most recent content modification expressed in seconds.
0 commit comments