summaryrefslogtreecommitdiffstats
path: root/Mac/Modules
Commit message (Collapse)AuthorAgeFilesLines
* use PyMac_Yield() instead of PyMac_Idle()Guido van Rossum1995-03-231-1/+1
|
* first cut at the whole quickdraw.h header file ...Guido van Rossum1995-03-194-28/+3496
|
* moved OpenDeskAcc hereGuido van Rossum1995-03-193-0/+30
|
* added evtedit.py for SystemClick()Guido van Rossum1995-03-101-0/+6
|
* the usualGuido van Rossum1995-03-109-5/+10
|
* remove some unused local variablesGuido van Rossum1995-03-041-5/+0
|
* more stuffGuido van Rossum1995-02-283-2/+9
|
* more stuffGuido van Rossum1995-02-282-12/+21
|
* all bgen modules now work with MWerksGuido van Rossum1995-02-271-4/+0
|
* return old value of PyMac_DoYieldEnabled; -1 means do not even check for ↵Guido van Rossum1995-02-261-5/+6
| | | | interrupts
* MAde a few things more orthogonal and did some cleanups:Jack Jansen1995-02-241-12/+7
| | | | | | | | - Applications now have their (minimal) main prrogram in macapplication.c and the rest of the init code in macglue.c. - A new define, USE_MAC_APPLET_SUPPORT, independent of USE_MAC_SHARED_LIB - chdir to script directory now done in PyMac_InitApplication.
* changed ifdefs and comments -- more modules are goodGuido van Rossum1995-02-211-11/+5
|
* change SC ifdef to MPWGuido van Rossum1995-02-211-1/+1
|
* ported to MPW/SCGuido van Rossum1995-02-211-7/+7
|
* fix bug in filterproc interfaceGuido van Rossum1995-02-213-28/+3
|
* replace %#s with portable solutionGuido van Rossum1995-02-201-13/+14
|
* Some more modules temp excluded in mwerks, and a comment fix.Jack Jansen1995-02-201-1/+8
|
* Minor bug fixJack Jansen1995-02-201-1/+1
|
* Added GetDirectory() methodJack Jansen1995-02-201-1/+16
|
* ported back to Think CGuido van Rossum1995-02-192-2/+2
|
* another round... ported to __SC__Guido van Rossum1995-02-1910-198/+135
|
* added copyright headerGuido van Rossum1995-02-191-0/+24
|
* explicitly init flags in methodlistGuido van Rossum1995-02-191-1/+1
|
* cfm 68k supportGuido van Rossum1995-02-181-0/+4
|
* added imp; forget ctb and math for __SC__ (for now)Guido van Rossum1995-02-181-5/+11
|
* add __SC__ ifdefGuido van Rossum1995-02-171-1/+1
|
* different #ifdefsGuido van Rossum1995-02-142-8/+6
|
* ported to Think CGuido van Rossum1995-02-142-0/+16
|
* Some of Guido's bgen modules aren't think-only anymoreJack Jansen1995-02-131-0/+3
|
* malloc debug only on ppcGuido van Rossum1995-02-131-1/+1
|
* added QuickDrawGuido van Rossum1995-02-131-2/+2
|
* Added RawFSSpec and RawAlias methods which turn their string argumentsJack Jansen1995-02-131-0/+53
| | | | into fsspec and alias objects.
* Use PyMac_GetPythonDir() to obtain python homedirJack Jansen1995-02-131-5/+4
| | | | fileargument moved here from macmain.c
* manually defined Resource() functionGuido van Rossum1995-02-051-0/+25
|
* more think/mw changesGuido van Rossum1995-02-052-12/+71
|
* added Resource(), to create new resources from PythonGuido van Rossum1995-02-052-0/+29
|
* get rid of obsolete low-level routinesGuido van Rossum1995-02-051-54/+8
|
* Added HandleEvent method to macos, so python programs can hand backJack Jansen1995-02-021-0/+14
| | | | events they don't want to handle to stdio
* Added [GS]etCreatorType methods to FSSpec objectsJack Jansen1995-02-021-0/+49
|
* Committed a more or less working version.Guido van Rossum1995-01-3035-0/+10223
|
* fixed StandardGetFile argument handlingGuido van Rossum1995-01-301-11/+4
|
* - Moved interrupt code to macglue.cJack Jansen1995-01-271-0/+15
| | | | | | | - Added possibility to turn off mainloop event handling - Check interrupts even when not handling events - Be more carefulabout which events we want - Use different method to determine fg/bg
* added (method) casts and 1995 copyrightGuido van Rossum1995-01-261-9/+12
|
* Added eventhandling in mainloop/busywait routine plus leaving someJack Jansen1995-01-261-0/+23
| | | | | cycles for background apps. MacOS has a new method to set the amount of time for bg apps.
* CodeWarrior 5 has more unixisms (open/close/read/write)Jack Jansen1995-01-261-10/+13
|
* Complete rewrite.Jack Jansen1995-01-261-49/+349
|
* split PATH over multiple lines for clarity;Guido van Rossum1995-01-251-1/+20
| | | | added some generated modules
* Got rid of the Resource and Sound interfaces, in favor of the onesGuido van Rossum1995-01-251-410/+3
| | | | generated from the header files (with some hand-holding :-).
* ported CW5 changes back to ThinkGuido van Rossum1995-01-221-0/+1
|
* Got rid of {Get,Set}FileType in favor of {Get,Set}CreatorAndType --Guido van Rossum1995-01-221-37/+19
| | | | | | | | | | | the former had their arguments reversed compared to all Apple's routines (e.g. FSpOpenResFile()). Also fixed the SoundMgr UserRoutine (Jack fixed it but put the fix between #ifdef __MWERKS__ ... #endif :-( ). NB eventually this module should disappear in favor of separate modules per manager (e.g. Resources, Sound, Files, ...).