summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac/macresource.py
Commit message (Collapse)AuthorAgeFilesLines
* Detabbed.Jack Jansen2003-04-091-129/+129
|
* If a resource file cannot be decoded because the directory is readonlyJack Jansen2003-02-251-43/+38
| | | | | | | | | | | create a temporary file. This fixes #688011. Got rid of the install() method in macresource, and replaced it with a resource_filename() method which will optionally decode a given resourcefile (which may be applesingle-encoded) and return the real resourcefile. Use this new method in buildtools to copy the correct resource file to the bundle. This fixes #688007.
* When installing resource files whose name ends in .rsrc use theJack Jansen2003-02-171-5/+42
| | | | | "copy anything to a data fork based resource file" trick of macresource. Fixes #688007.
* always also search on sys.path for res filesJust van Rossum2003-01-061-3/+2
|
* Moved most of Mac/Lib hierarchy to Lib/plat-mac: it can be used bothJack Jansen2002-12-301-0/+115
in MacPython-OS9 and MacPython-OSX (or the equivalent unix Python on Mac OS X). The only items remaining in Mac/Lib are modules that are meaningful only for MacPython-OS9 (CFM stuff, MacPython preferences in resources, etc).