summaryrefslogtreecommitdiffstats
path: root/Mac/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Fixed a mistake on my part when regenerating: removed a bogus import of ↵Jack Jansen2002-05-071-2/+0
| | | | | | Applscript_Suite. Bugfix candidate (I'll move it over myself).
* Regenerated.Jack Jansen2002-04-241-4/+4
| | | | Bugfix candidate.
* Second part of fix for #493826: regenerated suite modules so errn exists but ↵Jack Jansen2002-04-2333-1012/+687
| | | | | | == 0 doesn't signal an error. Bugfix candidate.
* Regenerated to include Internet Config error strings.Jack Jansen2002-04-221-9/+72
| | | | Bugfix candidate.
* Get rid of backward compatibility modules. Do this fairly early in the 2.3 ↵Jack Jansen2002-04-1145-180/+0
| | | | cycle so we don't shoot ourselves in the foot later.
* Suite to talk to the OSX Terminal application.Jack Jansen2002-03-302-0/+345
|
* Got rid of obsolete way to get at various toolbox types.Jack Jansen2002-03-301-5/+3
|
* Handle .icns and .plist files for applets.Jack Jansen2002-03-291-5/+23
| | | | | Also, for now (until we learn to parse .plist files) we make a special case for the IDE, setting the creator to "Pide".
* Implemented buildtools for MachoPython .app bundles. The API is compatibleJack Jansen2002-03-291-2/+150
| | | | enough that IDE and BuildApplet can create applets, yeah!
* Don't attempt to create a dummy fsspec if the user cancelled out, justJack Jansen2002-03-291-3/+6
| | | | | | | return None. For now, if the user asks for TEXT files files without type are also accepted. But it is time to phase out StandardGetFile and friends, really.
* Re-raise the Res.Error if the file doesn't exist.Jack Jansen2002-03-291-0/+2
|
* If the file has no resource fork first check to see whether it's aJack Jansen2002-03-291-5/+12
| | | | datafork-based resource file before trying to decode it as AppleSingle.
* Removed debug.Jack Jansen2002-03-291-1/+0
|
* Added an open_pathname() method which opens a resource file by pathname,Jack Jansen2002-03-211-7/+12
| | | | possibly converting from AppleSingle.
* mkalias() now also works for folders. Fixes bug #515830.Just van Rossum2002-03-101-3/+7
|
* Added support for unicode strings (utxt).Jack Jansen2002-02-051-0/+7
|
* Added minimal support for floating windows.Just van Rossum2002-02-041-7/+12
|
* Rename the routine to start the target running _start(), with a compatibilityJack Jansen2002-01-231-2/+6
| | | | | | | | | routine start() calling it. Some suites declare an event start(), which obscures this method, which causes the class initializer to fail when called with start=1. Based on bug report and fix suggestion by Jacob Kaplan-Moss.
* Regenerated to take advantage of new _builtinSuites package.Jack Jansen2002-01-2215-660/+588
|
* A "magic" suite that is the base suite for StdSuites. This solves a problem ↵Jack Jansen2002-01-222-0/+168
| | | | | | with the required events open/openapp/reopen/print/quit officially being part of Required but being defined (by Apple) in Standard. Most of the code and ideas contributed by Michael j. Barber.
* Get rid of fsspec type initializer, it wasn't used anyway.Jack Jansen2002-01-211-2/+0
|
* Changes by Donovan Preston (and a few minor ones by me) to make IDE run underJack Jansen2002-01-211-12/+26
| | | | MachoPython. Mainly making sure we don't call routines that don't exist.
* Fixed to work under MachoPython, doing the expected unpacking for ↵Jack Jansen2002-01-131-2/+24
| | | | applesingle files. The IDE still doesn't work, though, because it uses :-style pathnames.
* UH 3.4 checkin that I had forgotten about.Jack Jansen2002-01-041-4/+51
|
* Some of the new routines are carbon-only.Jack Jansen2002-01-041-4/+4
|
* Updated for CW7Jack Jansen2001-12-142-538/+114
|
* Add default values for options in the class init routine, not in the ↵Jack Jansen2001-12-142-14/+17
| | | | convenience wrapper function: distutils uses the class directly. Fixes bug #492665.
* first checkin for CoreGraphicsJust van Rossum2001-12-132-0/+25
|
* Don't barf when an AppleEvent was not handled. It's ok to ignore.Just van Rossum2001-12-131-2/+3
|
* Updated for Universal Headers 3.4.Just van Rossum2001-12-121-54/+284
|
* Support files for CarbonEventsJust van Rossum2001-12-122-0/+353
|
* The new menu initialization code would also add the SIOUX menus if a ↵Jack Jansen2001-12-101-5/+9
| | | | (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.
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-1/+1
| | | | | | | | | | | | | 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-305-41/+9
| | | | changes from start of branch upto r22b2 were already merged, of course).
* 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.
* Workaround for odd problem on my machine: without this I get a tracebackJust van Rossum2001-10-311-1/+5
| | | | if I hit enter instead of return upon file selection.
* quit() wasn't included in the suite. This is a quick manual patch to add it.Jack Jansen2001-10-231-1/+2
|
* Don't call MacOS.SchedParams() in MachO, it doesn't exist.Jack Jansen2001-09-091-4/+8
|
* Minimal module to decode AppleSingle files (the way resource files areJack Jansen2001-09-091-0/+101
| | | | | | | stored in the CVS repository). It can either decode resource/data forks in the standard Mac way or decode only the resource fork but store the result in the data fork (the MacOSX preferred way). Finder info and all other stuff is ignored.
* Added preferences/startup options for division warningJack Jansen2001-09-011-5/+7
| | | | and accepting unix-style newlines on input.
* We should look in the directory containing the module, not in the module ↵Jack Jansen2001-08-301-1/+1
| | | | itself, when we're looking for the resource file.
* need() now returns the refno of the resource file opened, or None if theJack Jansen2001-08-271-4/+7
| | | | specified resource was already available and no file was opened.
* Module to help other modules locate their resources. It currently knows aboutJack Jansen2001-08-271-0/+68
| | | | | resources in applets and separate OS9 style resource files, but it will eventually also be thought the hoops to jump through on OSX/MachO.
* Patch by Dean Draayer: support for indeterminate progress bars. YouJack Jansen2001-08-271-27/+37
| | | | | | get these by specifying maxval=0, which is now also the default. Untested.
* Import the MacOS toolbox modules from the Carbon package.Jack Jansen2001-08-2530-98/+98
|
* Step 2 in putting the MacOS toolbox modules in a package: issue a ↵Jack Jansen2001-08-2545-0/+135
| | | | DepracationWarning in the compatibility modules.
* Wrapper modules underound the toolbox modules, which now have an _ prepended.Jack Jansen2001-08-2323-0/+23
|
* Oops, these compatibility modules were missing. Which went unnoticed because ↵Jack Jansen2001-08-208-0/+8
| | | | their companions had been put in the wrong place.
* Compatibility modules. lib-compat is on the default sys.path for MacPython ↵Jack Jansen2001-08-1937-0/+37
| | | | 2.2, and each of these modules imports * from its namesake in the Carbon package.
* Moved to either :Mac:Lib (WASTEconst and files that weren't generated) or to ↵Jack Jansen2001-08-1927-6475/+0
| | | | the Carbon package.