summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-02-25 22:58:33 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2003-02-25 22:58:33 (GMT)
commitade626464d1feef2473f7af262e39e7689d8fbb2 (patch)
treebb0fa03361d5ce23ea847b2e865a952e0374791d /Lib/plat-mac
parent46c9784f68a8dbb4f13fa86ac780c45a4363b8a8 (diff)
downloadcpython-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-xLib/plat-mac/bundlebuilder.py4
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)