[Python-checkins] python/dist/src/Lib posixpath.py,1.50,1.51

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Thu, 06 Jun 2002 11:16:16 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv31935/Lib

Modified Files:
	posixpath.py 
Log Message:
Remove another reference to stat.ST_MODE

Index: posixpath.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/posixpath.py,v
retrieving revision 1.50
retrieving revision 1.51
diff -C2 -d -r1.50 -r1.51
*** posixpath.py	1 Jun 2002 19:51:15 -0000	1.50
--- posixpath.py	6 Jun 2002 18:16:14 -0000	1.51
***************
*** 281,285 ****
          except os.error:
              continue
!         if stat.S_ISDIR(st[stat.ST_MODE]):
              walk(name, func, arg)
  
--- 281,285 ----
          except os.error:
              continue
!         if stat.S_ISDIR(st.st_mode):
              walk(name, func, arg)