summaryrefslogtreecommitdiffstats
path: root/Doc/library/os.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-01-16 14:52:34 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-01-16 14:52:34 (GMT)
commit9ce52610f4bc688ec698424e55d45d49b090668b (patch)
treed9f2981404f3ec1002630bab8e53ee3c0c239350 /Doc/library/os.rst
parent46e4dd21c4ddb89f8771b629aca160c3affecf8c (diff)
downloadcpython-9ce52610f4bc688ec698424e55d45d49b090668b.zip
cpython-9ce52610f4bc688ec698424e55d45d49b090668b.tar.gz
cpython-9ce52610f4bc688ec698424e55d45d49b090668b.tar.bz2
Merged revisions 77520-77521 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r77520 | georg.brandl | 2010-01-16 16:41:21 +0200 (Sat, 16 Jan 2010) | 1 line Remove L suffix for integers. ........ r77521 | ezio.melotti | 2010-01-16 16:46:27 +0200 (Sat, 16 Jan 2010) | 1 line remove obsolete sentence ........
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r--Doc/library/os.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 2cd9dde..bf8abe6 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -1026,9 +1026,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
>>>