summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/calldll.c
Commit message (Collapse)AuthorAgeFilesLines
* Getting rid of support for MacOS9 and earlier. This is the first step,Jack Jansen2003-11-191-1194/+0
| | | | | and the biggest in size, but probably the easiest. Hunting through the source code comes next.
* staticforward bites the dust.Jeremy Hylton2002-07-171-3/+3
| | | | | | | | | | | | | | | 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-3/+3
|
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-3/+3
| | | | | | | | | | | | | 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.
* ANSIfied.Jack Jansen2000-07-311-6/+6
|
* Allow for 12 arguments max, in stead of 8. Untested.Jack Jansen1999-12-031-6/+9
|
* Updated to Universal Headers 3 constant namesJack Jansen1998-02-201-1/+1
|
* Added keys() and mapping interface to shared-library objects, allowingJack Jansen1997-05-231-2/+103
| | | | iteration over all symbols exported
* Redid arg/return handling (still not as I would like it to be, though).Jack Jansen1997-02-201-76/+263
|
* An initial stab at calling random C routines from PythonJack Jansen1997-02-171-0/+903