From f66df2b3e6d48fe47269b15c93fd4746c7160990 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 16 Jan 2010 14:41:21 +0000 Subject: [PATCH] Remove L suffix for integers. --- Doc/library/os.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 >>> -- 2.50.1