summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac/macresource.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove the Mac modulesBenjamin Peterson2008-05-121-146/+0
|
* Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE.Sean Reifscheider2007-09-171-1/+1
|
* Fix Mac build, patch #1091 by Humberto Diogenes.Georg Brandl2007-09-031-8/+8
|
* Convert raise statements in Lib/plat-{mac,os2emx}.Collin Winter2007-08-231-2/+2
|
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-3/+3
|
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-1/+1
| | | | | | | | | There's one major and one minor category still unfixed: doctests are the major category (and I hope to be able to augment the refactoring tool to refactor bona fide doctests soon); other code generating print statements in strings is the minor category. (Oh, and I don't know if the compiler package works.)
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-4/+4
| | | | | | (a) "except E, V" -> "except E as V" (b) V is now limited to a simple name (local variable) (c) V is now deleted at the end of the except block
* Get rid of a bunch more has_key() uses. We *really* need a tool for this.Neal Norwitz2006-08-201-1/+1
| | | | test_aepack now passes. IDLE still needs to be converted (among others).
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-11/+11
|
* 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).