[Python-checkins] python/dist/src/Lib statcache.py,1.12,1.13

nnorwitz@sourceforge.net nnorwitz@sourceforge.net
Tue, 09 Apr 2002 11:13:00 -0700


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

Modified Files:
	statcache.py 
Log Message:
Update docstring to reflect code change to bool

Index: statcache.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/statcache.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** statcache.py	7 Apr 2002 06:36:23 -0000	1.12
--- statcache.py	9 Apr 2002 18:12:58 -0000	1.13
***************
*** 70,74 ****
  
  def isdir(path):
!     """Return 1 if directory, else 0."""
      try:
          st = stat(path)
--- 70,74 ----
  
  def isdir(path):
!     """Return True if directory, else False."""
      try:
          st = stat(path)