summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac/aepack.py
Commit message (Collapse)AuthorAgeFilesLines
* Silence DeprecationWarnings from uses of has_key and <> in plat-mac.Mark Dickinson2010-04-031-1/+1
|
* Fix build issues on OSX 10.6 (issue 6802)Ronald Oussoren2009-09-061-1/+5
|
* fix test_py3kwarnsBenjamin Peterson2008-07-141-1/+1
| | | | The fact that this was failing and went unnoticed so long seems like a good argument for being able to enable and disble py3kwarnings through Python.
* Add warnings to and deprecated all those Mac modulesBenjamin Peterson2008-05-121-0/+3
|
* #2503 make singletons compared with "is" not == or !=Benjamin Peterson2008-03-291-1/+1
| | | | Thanks to Wummel for the patch
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-4/+0
|
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-9/+9
|
* Detabbed.Jack Jansen2003-04-091-266/+266
|
* Subclasses of ObjectSpecifier can now be packed and unpacked. This allowsJack Jansen2003-03-311-3/+20
| | | | | | you to say something like "talker.count(want=Address_Book.people)" in stead of having to manually create the aetypes.Type(Address_Book.people.want) OSA type.
* When in MacPython-OSX use bundlebuilder to create .app bundles.Jack Jansen2003-02-121-0/+4
|
* Moved aepack test code to the test suite.Jack Jansen2003-01-291-40/+0
|
* Converted to not use macfs whenever possible.Jack Jansen2003-01-281-18/+18
|
* Moved most of Mac/Lib hierarchy to Lib/plat-mac: it can be used bothJack Jansen2002-12-301-0/+385
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).