[Python-checkins] CVS: python/dist/src/Lib/distutils/command build_py.py,1.36,1.37

Tim Peters tim_one@users.sourceforge.net
Thu, 04 Apr 2002 15:17:33 -0800


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

Modified Files:
	build_py.py 
Log Message:
Revert 0/1 -> False/True change; I didn't intend to muck w/ distutils.


Index: build_py.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_py.py,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -d -r1.36 -r1.37
*** build_py.py	4 Apr 2002 22:55:58 -0000	1.36
--- build_py.py	4 Apr 2002 23:17:31 -0000	1.37
***************
*** 191,197 ****
              self.warn("file %s (for module %s) not found" %
                        (module_file, module))
!             return False
          else:
!             return True
  
      # check_module ()
--- 191,197 ----
              self.warn("file %s (for module %s) not found" %
                        (module_file, module))
!             return 0
          else:
!             return 1
  
      # check_module ()