Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added an attribute string_id_to_buffer, which gives the offset you | Jack Jansen | 1997-04-03 | 1 | -0/+12 |
| | | | | | | | | have to add to the id() of a string to get the address of the data. This is a horrible and error-prone hack, but unfortunately it is one that is needed for playing audio and crearing pixmaps. Having the constant here is at least marginally better than the previous practice of having the constant 16 all over the place... | ||||
* | - Most errors are *not* OSErr style, so raise better exceptions (with | Jack Jansen | 1997-04-03 | 1 | -27/+57 |
| | | | | | textual messages) - Plugged a memory leak or two | ||||
* | Still not a real test, but at least it runs again | Jack Jansen | 1997-04-03 | 1 | -17/+26 |
| | |||||
* | Use MacOS.string_id_to_buffer for id() to buffer address hack | Jack Jansen | 1997-04-03 | 1 | -1/+2 |
| | |||||
* | Use MacOS.string_id_to_buffer for the hack to convert string id() to | Jack Jansen | 1997-04-03 | 1 | -1/+2 |
| | | | | buffer address. | ||||
* | Converted to CW11. | Jack Jansen | 1997-02-24 | 33 | -12036/+12178 |
| | |||||
* | Make cache-alignment work always (in stead of 50% of the time:-) | Jack Jansen | 1997-02-24 | 1 | -1/+1 |
| | |||||
* | - Changed GestaltEqu.h to Gestalt.h | Jack Jansen | 1997-02-24 | 4 | -4/+1 |
| | | | | | - Changed FragLoader.h to CodeFragments.h - Removed Desk.h | ||||
* | - Changed GestaltEqu.h to Gestalt.h | Jack Jansen | 1997-02-24 | 17 | -205/+114 |
| | | | | | | | | - 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) | ||||
* | Re-generated from new (CW11) universal headers | Jack Jansen | 1997-02-24 | 5 | -50/+215 |
| | |||||
* | Rebuilt everything with Guido's new sources, added a few modules here | Jack Jansen | 1997-02-20 | 28 | -9902/+10328 |
| | | | | and there, etc. These projects are still CW10. | ||||
* | Added calldll module | Jack Jansen | 1997-02-20 | 1 | -0/+1 |
| | |||||
* | - Put USE_MAC_DYNAMIC_LOADING beack here in stead of auto-enabling it | Jack Jansen | 1997-02-20 | 3 | -0/+13 |
| | | | | | | in importdl.c (I had just one crash too many with a static python importing a dynamic module) - On powerpc, enable USE_CACHE_ALIGNED with a linesize of 32 bytes. | ||||
* | Only go into eventloop/interrupt check 10 times per second | Jack Jansen | 1997-02-20 | 1 | -0/+9 |
| | |||||
* | Comments around identifier after #endif | Jack Jansen | 1997-02-20 | 1 | -1/+1 |
| | |||||
* | Added operator, errno and soundex modules. | Jack Jansen | 1997-02-20 | 1 | -1/+7 |
| | |||||
* | Redid arg/return handling (still not as I would like it to be, though). | Jack Jansen | 1997-02-20 | 1 | -76/+263 |
| | |||||
* | An initial stab at calling random C routines from Python | Jack Jansen | 1997-02-17 | 1 | -0/+903 |
| | |||||
* | Initial stab at calling C routines from python dynamically | Jack Jansen | 1997-02-17 | 2 | -0/+214 |
| | |||||
* | The USE_CACHE_ALIGNING define now has a value: the number of *words* | Jack Jansen | 1997-02-03 | 1 | -4/+11 |
| | | | | in a cacheline. | ||||
* | Optionally (on USE_CACHE_ALIGN) extend overhead structure to align | Jack Jansen | 1997-02-01 | 1 | -0/+7 |
| | | | | returned addresses on 16-byte cacheline boundary. | ||||
* | Added/updated copyright notices | Jack Jansen | 1997-01-31 | 39 | -4651/+5572 |
| | | | | (and the &*^$%@ resource files got binhexed again, sigh) | ||||
* | Added _tkinter modules in Image extension | Jack Jansen | 1997-01-31 | 1 | -0/+2 |
| | |||||
* | Image libraries moved and small things | Jack Jansen | 1997-01-31 | 27 | -9945/+10039 |
| | |||||
* | Renamed | Jack Jansen | 1997-01-30 | 5 | -621/+617 |
| | |||||
* | Added imgpng | Jack Jansen | 1997-01-30 | 1 | -0/+2 |
| | |||||
* | "ported" Guido's embedding demo to the mac, and wrote some minimal | Jack Jansen | 1997-01-15 | 5 | -1/+278 |
| | | | | notes on embedding on the mac. | ||||
* | Added PyMac_Initialize() routine, to be used by embedding programs (in | Jack Jansen | 1997-01-15 | 5 | -516/+532 |
| | | | | stead of standard Py_Initialize(), which it calls). | ||||
* | Return preferences of unknown type as opaque data | Jack Jansen | 1997-01-10 | 1 | -1/+14 |
| | |||||
* | Minor fix to get non-gusi python to compile again | Jack Jansen | 1997-01-10 | 1 | -5/+0 |
| | |||||
* | Mac-specific version of getmtime (for non-GUSI Python, which needs | Jack Jansen | 1997-01-10 | 1 | -0/+50 |
| | | | | different include files) | ||||
* | High-level interface to Internet Config | Jack Jansen | 1997-01-09 | 2 | -1/+246 |
| | | | | (and readability fix to icgluetest.py) | ||||
* | Added icglue modules and (optionally) NumPy and PIL extensions | Jack Jansen | 1997-01-07 | 1 | -0/+11 |
| | |||||
* | - Added optional profiling support | Jack Jansen | 1997-01-07 | 30 | -5795/+6237 |
| | | | | | - Added Internet Config interface - Use different ports of zlib and libpng | ||||
* | Added profiler initialization/finalization code (if __profile__ is defined) | Jack Jansen | 1997-01-07 | 1 | -1/+12 |
| | |||||
* | Low-level interface to Internet Config (to be augmented by nice Python | Jack Jansen | 1997-01-07 | 1 | -0/+596 |
| | | | | wrapper shortly) | ||||
* | Minimal test of icglue module | Jack Jansen | 1997-01-07 | 1 | -0/+27 |
| | |||||
* | - CWGUSI has moved | Jack Jansen | 1996-12-23 | 1 | -21/+24 |
| | | | | - Changed instructions for Tcl 7.6/Tk 4.2 | ||||
* | Added a chapter on using OSAXen | Jack Jansen | 1996-12-23 | 1 | -0/+17 |
| | |||||
* | Added range of resource-ids for twit. | Jack Jansen | 1996-12-23 | 1 | -1/+4 |
| | |||||
* | Added Application.cleanup method which asks all windows to close | Jack Jansen | 1996-12-23 | 1 | -0/+5 |
| | | | | themselves and returns true if they did. | ||||
* | Added gdbm (if USE_GDBM defined) | Jack Jansen | 1996-12-23 | 1 | -0/+6 |
| | |||||
* | Moved resources around to forestall conflicts with debuggee | Jack Jansen | 1996-12-23 | 8 | -17/+20 |
| | |||||
* | Added gdbm | Jack Jansen | 1996-12-23 | 1 | -0/+1 |
| | |||||
* | Added gdbm plugins, changed jpeg library to v6, various minor changes | Jack Jansen | 1996-12-23 | 33 | -11647/+12012 |
| | |||||
* | Added gdbm plugins | Jack Jansen | 1996-12-23 | 1 | -0/+2 |
| | |||||
* | If sys.argv is empty ask for input file and output folder | Jack Jansen | 1996-12-23 | 1 | -0/+26 |
| | |||||
* | Added reference to pdf documentation and bbpy, correctly explained | Jack Jansen | 1996-11-20 | 1 | -1/+3 |
| | | | | | difference between aetools.Error and MacOS.Error for appletscript programs. | ||||
* | Added reference to pdf documentation and bbpy, correctly explained | Jack Jansen | 1996-11-20 | 3 | -138/+148 |
| | | | | | difference between aetools.Error and MacOS.Error for appletscript programs. | ||||
* | Fixed FSSpec->pathname code to add colon if the fsspec points to a disk. | Jack Jansen | 1996-11-20 | 1 | -0/+6 |
| |