summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/waste
Commit message (Collapse)AuthorAgeFilesLines
* Got rid of macglue.h, replacing it by pymactoolbox.h where relevant.Jack Jansen2003-11-202-12/+4
| | | | Cleaned up various things in the toolbox modules.
* PyDoc_STR is always defined nowadays (and has been for quite some time:-)Jack Jansen2003-11-191-3/+0
|
* WASTEconst.py goes one level above the toolbox directory.Jack Jansen2003-02-211-1/+1
|
* - Various tweaks to shut up compiler warnings.Jack Jansen2002-12-232-34/+72
| | | | | - Regenerated with the correct calls to PyType_Ready and the correct deallocator calls.
* Regenerated with inheritance-aware xxxx_Check() macros.Jack Jansen2002-12-191-2/+2
|
* Get rid of support for Universal Headers older than 3.4 and various otherJack Jansen2002-12-132-14/+6
| | | | outdated things.
* Added PEP253 support to most Carbon modules. This isn't complete yet:Jack Jansen2002-12-032-28/+86
| | | | | | some of the more compilcated cases (CF, Res) haven't been done yet. Also, various types should inherit from each other (anything with an as_Resource method should be a Resource subtype, the CF types should become one family).
* Converted the Carbon modules to use PEP252-style objects, withJack Jansen2002-11-292-22/+42
| | | | | | | | | | | | | | | | descriptors in stead of manual getattr hooks to get at attributes of the objects. For Qd I have in stead gotten rid of most of the attribute access in favor of the carbon-style accessor methods (with the exception of visRgn, to be done later), and of the Carbon.Qd.qd global object, for which accessor functions are also available. For List I have fixed the fact that various methods were incorrectly generated as functions. CF is untouched: PEP252 doesn't allow "poor-mans-inheritance" with basechain, so it will have to wait for PEP253 support.
* Define PyDoc_STR if it isn't defined. This makes these modules compileJack Jansen2002-11-183-1/+7
| | | | for Python 2.2.
* Added PyDoc_STR's.Jack Jansen2002-08-221-112/+112
|
* After generating the Python file with definitions try to run it, soJack Jansen2002-08-151-0/+2
| | | | we catch errors during the build process in stead of later during runtime.
* Fixed the last two bgen-based modules to be buildable on OSX.Jack Jansen2002-08-051-4/+5
|
* Got rid of staticforward.Jack Jansen2002-08-051-2/+2
|
* staticforward bites the dust.Jeremy Hylton2002-07-171-2/+2
| | | | | | | | | | | | | | | 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.
* Regenerated.Jack Jansen2002-04-231-2/+2
|
* Weaklink most toolbox modules, improving backward compatibility. Modules ↵Jack Jansen2002-03-241-0/+18
| | | | | | | | will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. Should finally fix 531398. 2.2.1 candidate. Also blacklisted some constants with definitions that were not Python-compatible.
* - Updated to Waste 2.0.Jack Jansen2002-01-113-497/+936
| | | | - Use waste included with CW in stead of separate package.
* Updated to Universal Headers 3.4Jack Jansen2001-12-181-0/+4
|
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-2/+2
| | | | | | | | | | | | | 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.
* Merged changes made on r22b2-branch between r22b2 and r22b2-mac (theJack Jansen2001-11-301-6/+2
| | | | changes from start of branch upto r22b2 were already merged, of course).
* A few more gcc warnings bite the dust.Jack Jansen2001-09-051-3/+14
|
* Added a const to shut up a compiler warning.Jack Jansen2001-06-202-2/+2
|
* Lots more Carbon/Carbon.h includes, new UPP routine names, function ↵Jack Jansen2001-05-221-304/+104
| | | | prototypes. Most toolbox modules now compile, link and import in MacOSX-MachO python.
* Quick (manual) fix to make the module compile with Waste 2.0. TBD later.Jack Jansen2001-01-241-1/+1
|
* Some of the types are signed 8 bit ints. Fixed.Jack Jansen2000-09-082-10/+10
|
* Got rid of Py_FatalError calls.Jack Jansen2000-09-081-1/+1
|
* pymactoolbox.h contains protoypes for all externally visible toolbox moduleJack Jansen2000-07-141-41/+31
| | | | | functions. Include it in stead of duplicating the declarations everywhere. Also cleaned up toolbox module exports, and got rid of resNotFound error.
* Changed all (hopefully) uses of unsigned 16 bit value to use H format ↵Jack Jansen2000-07-071-2/+2
| | | | specifier, now that h is signed-only.
* Replaced fprintf(stderr,...) with PySys_WriteStderr(...) where appropriate.Jack Jansen1998-10-122-2/+2
|
* Replaced addpack by handcrafted code to find the bgen stuff.Jack Jansen1998-04-171-2/+4
|
* Added WEGetTabSize and WESetTabSize, at Just's requestJack Jansen1998-03-022-0/+42
|
* Updated for Waste 1.3Jack Jansen1998-02-202-23/+287
|
* Export type objects to PythonJack Jansen1997-09-201-1/+9
|
* Added #include <WETabs.h>, which had somehow gone missingJack Jansen1997-08-273-4/+20
|
* Added support for tab hooksJack Jansen1996-10-232-0/+59
|
* Fixed object-handler-install bugJack Jansen1996-10-011-1/+1
|
* Fixed bug in object-handler install arg handlingJack Jansen1996-10-011-1/+1
|
* Upgraded to Waste 1.2fJack Jansen1996-08-063-98/+114
|
* Fixed callback handling on 68K machines.Jack Jansen1996-05-202-16/+22
|
* Added support for callbacks (for embedded objects)Jack Jansen1996-05-073-4/+453
|
* Made style and soup handles optionalJack Jansen1996-04-233-17/+27
|
* An interface to WASTE, an all-singing-all-dancing TextEdit replacementJack Jansen1996-04-163-0/+1955