summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac/ic.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove the Mac modulesBenjamin Peterson2008-05-121-264/+0
|
* Merged revisions 62021,62029,62035-62038,62043-62044,62052-62053 via ↵Benjamin Peterson2008-03-311-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r62021 | benjamin.peterson | 2008-03-28 18:11:01 -0500 (Fri, 28 Mar 2008) | 2 lines NIL => NULL ........ r62029 | amaury.forgeotdarc | 2008-03-28 20:42:31 -0500 (Fri, 28 Mar 2008) | 3 lines Correctly call the base class tearDown(); otherwise running test_logging twice produce the errors we see on all buildbots ........ r62035 | raymond.hettinger | 2008-03-29 05:42:07 -0500 (Sat, 29 Mar 2008) | 1 line Be explicit about what efficient means. ........ r62036 | georg.brandl | 2008-03-29 06:46:18 -0500 (Sat, 29 Mar 2008) | 2 lines Fix capitalization. ........ r62037 | amaury.forgeotdarc | 2008-03-29 07:42:54 -0500 (Sat, 29 Mar 2008) | 5 lines lib2to3 should install a logging handler only when run as a main program, not when used as a library. This may please the buildbots, which fail when test_lib2to3 is run before test_logging. ........ r62043 | benjamin.peterson | 2008-03-29 10:24:25 -0500 (Sat, 29 Mar 2008) | 3 lines #2503 make singletons compared with "is" not == or != Thanks to Wummel for the patch ........ r62044 | gerhard.haering | 2008-03-29 14:11:52 -0500 (Sat, 29 Mar 2008) | 2 lines Documented the lastrowid attribute. ........ r62052 | benjamin.peterson | 2008-03-30 14:35:10 -0500 (Sun, 30 Mar 2008) | 2 lines Updated README regarding doc formats ........ r62053 | georg.brandl | 2008-03-30 14:41:39 -0500 (Sun, 30 Mar 2008) | 2 lines The other download formats will be available for 2.6 too. ........
* remove ord() calls on what are now integers rather than charactersBill Janssen2007-10-301-7/+7
|
* Get a bunch of tests working on Mac OS. I suspect that a bunch of theNeal Norwitz2007-10-271-1/+1
| | | | ord()s in Lib/plat-mac/ic.py need to be removed.
* Remove functions in string module that are also string methods. Also remove:Neal Norwitz2007-04-171-3/+2
| | | | | * all calls to functions in the string module (except maketrans) * everything from stropmodule except for maketrans() which is still used
* 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).