From: Georg Brandl Date: Sat, 16 Jan 2010 14:41:21 +0000 (+0000) Subject: Remove L suffix for integers. X-Git-Tag: v3.2a1~1839 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f66df2b3e6d48fe47269b15c93fd4746c7160990;p=python Remove L suffix for integers. --- diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 96d21841ec..d01c8dafeb 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 >>>