[Python-checkins] python/dist/src/Lib/plat-mac bundlebuilder.py,1.15,1.16

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Tue, 25 Feb 2003 14:58:37 -0800


Update of /cvsroot/python/python/dist/src/Lib/plat-mac
In directory sc8-pr-cvs1:/tmp/cvs-serv15466

Modified Files:
	bundlebuilder.py 
Log Message:
Reverted the rev. 1.8 change: the magic for decoding resourcefiles
is now in buildtools.


Index: bundlebuilder.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/bundlebuilder.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** bundlebuilder.py	25 Feb 2003 21:08:12 -0000	1.15
--- bundlebuilder.py	25 Feb 2003 22:58:33 -0000	1.16
***************
*** 37,42 ****
  from plistlib import Plist
  from types import FunctionType as function
- import macresource
- 
  
  class BundleBuilderError(Exception): pass
--- 37,40 ----
***************
*** 190,195 ****
  			if self.symlink:
  				symlink(src, dst, mkdirs=1)
- 			elif os.path.splitext(src)[1] == '.rsrc':
- 				macresource.install(src, dst, mkdirs=1)
  			else:
  				copy(src, dst, mkdirs=1)
--- 188,191 ----