summaryrefslogtreecommitdiffstats
path: root/Mac
Commit message (Collapse)AuthorAgeFilesLines
* OSX workaround: don't crash if the extentions folder can't be found.Just van Rossum2001-12-131-2/+6
| | | | Not sure how to properly solve this.
* include the proper header for Mach-OJust van Rossum2001-12-132-2/+2
|
* added CoreGraphics to build listJust van Rossum2001-12-131-0/+1
|
* added non-support for CoreGraphics...Just van Rossum2001-12-131-0/+5
|
* project file for CoreGraphicsJust van Rossum2001-12-132-0/+1
|
* second CoreGraphics batchJust van Rossum2001-12-138-0/+3414
|
* first checkin for CoreGraphicsJust van Rossum2001-12-132-0/+25
|
* fixed typo in my email addressJust van Rossum2001-12-131-1/+1
|
* Don't barf when an AppleEvent was not handled. It's ok to ignore.Just van Rossum2001-12-131-2/+3
|
* re-checkin as AppleSingleJust van Rossum2001-12-132-0/+0
|
* Shut up gcc warning.Jack Jansen2001-12-122-4/+4
|
* Updated for 2.2 release.Jack Jansen2001-12-121-0/+0
|
* added CarbonEventsJust van Rossum2001-12-122-0/+2
|
* Updated for Universal Headers 3.4.Just van Rossum2001-12-124-57/+2655
|
* Support files for CarbonEventsJust van Rossum2001-12-122-0/+353
|
* Added proper error checking in event callback handlerJust van Rossum2001-12-122-24/+50
|
* Ready for 2.2 distribution.Jack Jansen2001-12-123-10/+18
|
* Exposed quite a few more calls.Just van Rossum2001-12-123-28/+191
|
* Fixed to the extend that it now builds in CW6, and actually worksJust van Rossum2001-12-112-48/+64
| | | | a little.
* Updated for hfsplus module, new gusi libs.Jack Jansen2001-12-111-0/+0
|
* Added __members__ to FInfo object.Just van Rossum2001-12-111-0/+2
|
* The new menu initialization code would also add the SIOUX menus if a ↵Jack Jansen2001-12-102-6/+15
| | | | (frozen) Python program had installed its own menubar previously. We now guard against this, with a bit of a hack: FrameWork uses the same Menu ID as Sioux, and the init code checks that the text in the menu is "About SIOUX" before replacing it.
* Updated, and converted line-endings to unix-style (oops:-)Jack Jansen2001-12-091-1/+1
|
* Mods to make WASTE module compile and link for MachoPython. Not testedJack Jansen2001-12-094-2/+10
| | | | any further, yet.
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-0829-65/+65
| | | | | | | | | | | | | 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.
* OSX tweak.Just van Rossum2001-12-081-1/+3
|
* Don't do App.DrawThemeListBoxFrame() upon activate: it startsJust van Rossum2001-12-081-2/+2
| | | | | | | looking worse and worse if you deactivate/activate the window a few times. I don't know how to fix this properly, but I'm beginning to think that it's almost impossible to support the Appearance manager properly due to the way W works. Time for W2?...
* Not being able to copy PythonCore to the system-folder is not a fatal error, ↵Jack Jansen2001-12-072-4/+8
| | | | | | on OSX the user may not have permission to do so. Also give a more informative message in this case. Fixes bug 475253.
* Replace sprintf() with PyOS_snprintf().Jack Jansen2001-12-053-9/+9
|
* Link more modules with weak import, and add CarbonAccessors.o to all ↵Jack Jansen2001-12-051-6/+7
| | | | relevant PowerPC toolbox modules. This, in combination with recent IDE mods, makes the IDE work again under MacOS 8.1.
* Define NDEBUG if Py_DEBUG isn't defined.Jack Jansen2001-12-0511-0/+33
|
* Patch by Jason Harper to allow IDE to work again under MacOS 8.1. Plus ↵Jack Jansen2001-12-043-35/+145
| | | | appearance support for Wlist frames and focussing. Plus commented-out appearance support for the same for Wtext, which still needs some work.
* removed some dead code.Just van Rossum2001-12-031-15/+0
|
* Removed old and broken AE-based browser controller, use webbrowser.pyJust van Rossum2001-12-031-31/+11
| | | | instead. This fixes bug #488420.
* A system() lookalike that sends commands to ToolServer, by Daniel Brotsky. ↵Jack Jansen2001-12-031-0/+67
| | | | The semantics aren't enough like system() to add this to the main Lib folder, but it is pretty useful nonetheless for selected people.
* Merged changes made on r22b2-branch between r22b2 and r22b2-mac (theJack Jansen2001-11-3050-298/+1805
| | | | changes from start of branch upto r22b2 were already merged, of course).
* a whole bunch of OSX tweaksJust van Rossum2001-11-1810-69/+105
|
* Add the MSL C library to the set of standard librariesJack Jansen2001-11-102-1/+37
| | | | | | | linked against. Most, but not all, of it is included in PythonCore, but extensions may want to use some of the routines not included. Fixes a bug reported by Tom Loredo.
* Fixed various problems with command-dot handling (some very old):Jack Jansen2001-11-101-45/+52
| | | | | | | | | | - Don't scan for cmd-. unless in the foreground - Scan before switching out to other processes, not after - don't scan if SchedParams.check_interrupt is false (!) - But: do scan if we're blocked on I/O One problem remains: in the last case KeyboardInterrupt is raised too late.
* Changed names, added bridge functions to macfs.fsref objects andJack Jansen2001-11-061-67/+48
| | | | generally did things to get it working.
* Added an error message when using FSRef objects on platforms that don'tJack Jansen2001-11-061-0/+1
| | | | support them.
* Added hfsplusapi module.Jack Jansen2001-11-064-0/+6
|
* Added longlong routines.Jack Jansen2001-11-062-1/+8
|
* Enabled WITH_LONG_LONG. No reason it was disabled, it has been supported by ↵Jack Jansen2001-11-061-2/+2
| | | | the Metrowerks compiler for quite some time.
* Removed unused variable.Jack Jansen2001-11-061-1/+0
|
* First couple of fixes to make it compile with Universal 3.3.2.Jack Jansen2001-11-061-10/+21
|
* HFS+ API contributed by Nitin Ganatra. This checkin is identical to what he ↵Jack Jansen2001-11-061-0/+1547
| | | | sent me, except for the namechange (fmgr->hfsplus).
* Correctly builds the C module now.Jack Jansen2001-11-052-5/+1600
|
* First tweaks to allow MacPython to be compiled withJack Jansen2001-11-055-22/+9
| | | | Universal Headers 3.4
* Fixed broken newlines and changed module name. Still untested.Jack Jansen2001-11-052-23/+18
|