Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f66df2b

Browse files
committed
Remove L suffix for integers.
1 parent 3a078aa commit f66df2b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/library/os.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1065,9 +1065,9 @@ Files and Directories
10651065
>>> import os
10661066
>>> statinfo = os.stat('somefile.txt')
10671067
>>> statinfo
1068-
(33188, 422511L, 769L, 1, 1032, 100, 926L, 1105022698,1105022732, 1105022732)
1068+
(33188, 422511, 769, 1, 1032, 100, 926, 1105022698,1105022732, 1105022732)
10691069
>>> statinfo.st_size
1070-
926L
1070+
926
10711071
>>>
10721072

10731073

0 commit comments

Comments
 (0)