diff options
author | Georg Brandl <georg@python.org> | 2010-01-16 14:41:21 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-01-16 14:41:21 (GMT) |
commit | f66df2b3e6d48fe47269b15c93fd4746c7160990 (patch) | |
tree | 146138a43aa55b797bf67310eeb13f1b48c96c6a /Doc | |
parent | 3a078aab79b3a515e9f6a85c87d4b2820be7a509 (diff) | |
download | cpython-f66df2b3e6d48fe47269b15c93fd4746c7160990.zip cpython-f66df2b3e6d48fe47269b15c93fd4746c7160990.tar.gz cpython-f66df2b3e6d48fe47269b15c93fd4746c7160990.tar.bz2 |
Remove L suffix for integers.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 96d2184..d01c8da 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -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 >>> |