From: Jack Jansen Date: Tue, 25 Feb 2003 22:58:33 +0000 (+0000) Subject: Reverted the rev. 1.8 change: the magic for decoding resourcefiles X-Git-Tag: v2.3c1~1682 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ade626464d1feef2473f7af262e39e7689d8fbb2;p=thirdparty%2FPython%2Fcpython.git Reverted the rev. 1.8 change: the magic for decoding resourcefiles is now in buildtools. --- diff --git a/Lib/plat-mac/bundlebuilder.py b/Lib/plat-mac/bundlebuilder.py index 3d4f3c9c14b7..a263e62e232a 100755 --- a/Lib/plat-mac/bundlebuilder.py +++ b/Lib/plat-mac/bundlebuilder.py @@ -36,8 +36,6 @@ from copy import deepcopy import getopt from plistlib import Plist from types import FunctionType as function -import macresource - class BundleBuilderError(Exception): pass @@ -189,8 +187,6 @@ class BundleBuilder(Defaults): dst = pathjoin(self.bundlepath, dst) 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)