]> granicus.if.org Git - python/commitdiff
Remove L suffix for integers.
authorGeorg Brandl <georg@python.org>
Sat, 16 Jan 2010 14:41:21 +0000 (14:41 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 16 Jan 2010 14:41:21 +0000 (14:41 +0000)
Doc/library/os.rst

index 96d21841ec2cf9fea82b562f0d94a860293c48c1..d01c8dafeb3e43f4e183c40af7dc01b192f404b0 100644 (file)
@@ -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
       >>>