This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Tiny fix for os.walk docstring
Type: Stage:
Components: Library (Lib) Versions: Python 2.6, Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: gregory.p.smith Nosy List: Yinon, gregory.p.smith
Priority: normal Keywords: easy

Created on 2008-04-28 06:43 by Yinon, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg65911 - (view) Author: Yinon Ehrlich (Yinon) Date: 2008-04-28 06:43
os.walk.__doc__ has the following example-line (os.py, line 271):
  for root, dirs, files in walk('python/Lib/email'):

it should be os.walk
msg66304 - (view) Author: Gregory P. Smith (gregory.p.smith) * (Python committer) Date: 2008-05-06 07:07
fixed in trunk r62756 and release25-maint r62757.  thanks for the report.
History
Date User Action Args
2022-04-11 14:56:33adminsetgithub: 46959
2008-05-06 07:07:24gregory.p.smithsetstatus: open -> closed
versions: + Python 2.5
nosy: + gregory.p.smith
messages: + msg66304
assignee: gregory.p.smith
keywords: + easy
resolution: fixed
2008-04-28 06:43:12Yinoncreate