diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-02-25 22:58:33 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-02-25 22:58:33 (GMT) |
commit | ade626464d1feef2473f7af262e39e7689d8fbb2 (patch) | |
tree | bb0fa03361d5ce23ea847b2e865a952e0374791d /Lib/plat-mac | |
parent | 46c9784f68a8dbb4f13fa86ac780c45a4363b8a8 (diff) | |
download | cpython-ade626464d1feef2473f7af262e39e7689d8fbb2.zip cpython-ade626464d1feef2473f7af262e39e7689d8fbb2.tar.gz cpython-ade626464d1feef2473f7af262e39e7689d8fbb2.tar.bz2 |
Reverted the rev. 1.8 change: the magic for decoding resourcefiles
is now in buildtools.
Diffstat (limited to 'Lib/plat-mac')
-rwxr-xr-x | Lib/plat-mac/bundlebuilder.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/plat-mac/bundlebuilder.py b/Lib/plat-mac/bundlebuilder.py index 3d4f3c9..a263e62 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) |