commit | b0fa4b843324ddebce03f13aa27021ed3d03332d | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Mon Aug 01 22:59:40 2011 +0200 |
committer | Georg Brandl <georg@python.org> | Mon Aug 01 22:59:40 2011 +0200 |
tree | f0e299bf58595f6d25396635d5d736c68f551384 | |
parent | eec1ed81192e856ada3fab4d13aaea7d7a581f0a [diff] | |
parent | aa71583f09a39becfb3df55dc440820f33925029 [diff] |
Merge with 3.2
diff --git a/Doc/library/stat.rst b/Doc/library/stat.rst index 4f79689..7de98b6 100644 --- a/Doc/library/stat.rst +++ b/Doc/library/stat.rst
@@ -87,7 +87,7 @@ for f in os.listdir(top): pathname = os.path.join(top, f) - mode = os.stat(pathname)[ST_MODE] + mode = os.stat(pathname).st_mode if S_ISDIR(mode): # It's a directory, recurse into it walktree(pathname, callback)