summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/ctbmodule.c
Commit message (Collapse)AuthorAgeFilesLines
* staticforward bites the dust.Jeremy Hylton2002-07-171-1/+1
| | | | | | | | | | | | | | | The staticforward define was needed to support certain broken C compilers (notably SCO ODT 3.0, perhaps early AIX as well) botched the static keyword when it was used with a forward declaration of a static initialized structure. Standard C allows the forward declaration with static, and we've decided to stop catering to broken C compilers. (In fact, we expect that the compilers are all fixed eight years later.) I'm leaving staticforward and statichere defined in object.h as static. This is only for backwards compatibility with C extensions that might still use it. XXX I haven't updated the documentation.
* Replaced lots of PyMem_DEL() calls with PyObject_DEL().Jack Jansen2002-05-221-1/+1
|
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-1/+1
| | | | | | | | | | | | | type.__module__ behavior. This adds the module name and a dot in front of the type name in every type object initializer, except for built-in types (and those that already had this). Note that it touches lots of Mac modules -- I have no way to test these but the changes look right. Apologies if they're not. This also touches the weakref docs, which contains a sample type object initializer. It also touches the mmap test output, because the mmap type's repr is included in that output. It touches object.h to put the correct description in a comment.
* Got rid of obsolete HAVE_UNIVERSAL_HEADERS test and SystemSevenOrLater define.Jack Jansen2000-07-141-6/+0
|
* Universal Headers 3Jack Jansen1998-02-201-0/+1
|
* New exception interfaceJack Jansen1997-10-071-5/+1
|
* Export type objects to PythonJack Jansen1997-09-201-1/+4
|
* - Changed the m# format for PyArg_ParseTuple back to s#Jack Jansen1997-05-071-1/+1
| | | | - c2pstr has moved to a different include file
* - Most errors are *not* OSErr style, so raise better exceptions (withJack Jansen1997-04-031-27/+57
| | | | | textual messages) - Plugged a memory leak or two
* - Changed GestaltEqu.h to Gestalt.hJack Jansen1997-02-241-1/+1
| | | | | | | | - Changed FragLoader.h to CodeFragments.h - Removed Desk.h - Regenerated bgen modules from new universal headers - Changed some of the s# in PyArg_ParseTuple to m# (unfortunately: this should have been a different commit)
* Added/updated copyright noticesJack Jansen1997-01-311-1/+1
| | | | (and the &*^$%@ resource files got binhexed again, sigh)
* RenamedJack Jansen1997-01-301-137/+137
|
* ported to MPW/SCGuido van Rossum1995-02-211-7/+7
|
* Interface to Mac Communications Toolbox (only Connection Manager forJack Jansen1994-12-141-0/+585
now)