Remove L suffix for integers.
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 @@
       >>> 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
       >>>