summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac/ic.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-2/+2
| | | | | | | | | 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.)
* Get rid of a bunch more has_key() uses. We *really* need a tool for this.Neal Norwitz2006-08-201-5/+2
| | | | test_aepack now passes. IDLE still needs to be converted (among others).
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-35/+34
|
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-2/+2
| | | | From SF patch #852334.
* Detabbed.Jack Jansen2003-04-091-212/+212
|
* Workaround for bug #644243 (which is actually an Apple bug, I think): URLsJack Jansen2003-02-251-0/+4
| | | | | of the form file:/path/to/file don't work whereas file:///path/to/file works fine. We convert the former to the latter.
* Getting rid of macfs.Jack Jansen2003-02-211-1/+0
|
* Getting rid of macfs and FSSpecs.Jack Jansen2003-02-051-7/+5
|
* Moved most of Mac/Lib hierarchy to Lib/plat-mac: it can be used bothJack Jansen2002-12-301-0/+268
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).