[Python-checkins] CVS: python/dist/src/Lib/plat-riscos riscospath.py,1.5,1.6

Tim Peters tim_one@users.sourceforge.net
2001年10月09日 21:16:22 -0700


Update of /cvsroot/python/python/dist/src/Lib/plat-riscos
In directory usw-pr-cvs1:/tmp/cvs-serv25866/python/Lib/plat-riscos
Modified Files:
	riscospath.py 
Log Message:
SF bug [#469732] os.path.walk docstring inconsistent.
We have 5 implementations of walk(), and 5 different docstrings. Combined
'em. Let's see how long it takes before they're all different again!
Index: riscospath.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-riscos/riscospath.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** riscospath.py	2001年09月17日 15:16:09	1.5
--- riscospath.py	2001年10月10日 04:16:20	1.6
***************
*** 351,359 ****
 
 def walk(top, func, arg):
! """
! walk(top,func,args) calls func(arg, d, files) for each directory "d" in the tree
! rooted at "top" (including "top" itself). "files" is a list of all the files and
! subdirs in directory "d".
! """
 try:
 names= os.listdir(top)
--- 351,368 ----
 
 def walk(top, func, arg):
! """Directory tree walk with callback function.
! 
! For each directory in the directory tree rooted at top (including top
! itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
! dirname is the name of the directory, and fnames a list of the names of
! the files and subdirectories in dirname (excluding '.' and '..'). func
! may modify the fnames list in-place (e.g. via del or slice assignment),
! and walk will only recurse into the subdirectories whose names remain in
! fnames; this can be used to implement a filter, or to impose a specific
! order of visiting. No semantics are defined for, or required of, arg,
! beyond that arg is always passed to func. It can be used, e.g., to pass
! a filename pattern, or a mutable object designed to accumulate
! statistics. Passing None for arg is common."""
! 
 try:
 names= os.listdir(top)

AltStyle によって変換されたページ (->オリジナル) /