mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Remove L suffix for integers.
This commit is contained in:
parent
3a078aab79
commit
f66df2b3e6
1 changed files with 2 additions and 2 deletions
|
@ -1065,9 +1065,9 @@ Files and Directories
|
|||
>>> import os
|
||||
>>> statinfo = os.stat('somefile.txt')
|
||||
>>> statinfo
|
||||
(33188, 422511L, 769L, 1, 1032, 100, 926L, 1105022698,1105022732, 1105022732)
|
||||
(33188, 422511, 769, 1, 1032, 100, 926, 1105022698,1105022732, 1105022732)
|
||||
>>> statinfo.st_size
|
||||
926L
|
||||
926
|
||||
>>>
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue