Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tool to pre-created cached .rsrc.df.rsrc files in the Lib directories, | Jack Jansen | 2002-08-09 | 1 | -0/+45 |
| | | | | similar to compileall.py. | ||||
* | Patch by Russel Owen: if we have command line arguments zap pyc files | Jack Jansen | 2002-08-09 | 1 | -12/+15 |
| | | | | in the directories given. | ||||
* | Fixed incorrect logic in determining whether we should initialize | Jack Jansen | 2002-08-07 | 1 | -2/+1 |
| | | | | the classes' attribute list. | ||||
* | - If an OSA identifier is a Python reserved word we now append an _ | Jack Jansen | 2002-08-07 | 1 | -8/+10 |
| | | | | | | in stead of prepending it, which messes up "import * from". - A few ascii()s added again. - Changed the getbaseclasses a little, but it still isn't perfect. | ||||
* | Don't be over-enthusiastic with the ascii() calls: we don't need it if | Jack Jansen | 2002-08-07 | 1 | -19/+19 |
| | | | | the result passes through backticks. | ||||
* | Donovan Preston's patch #538395, with some mods by me. | Jack Jansen | 2002-08-07 | 1 | -30/+86 |
| | | | | | | | | | | | | This patch makes inheritance for OSA classes work. The implementation is a bit convoluted, but I don't immedeately see a simpler way of doing it. I added calls to ascii() everywhere we output strings that may contain non-ascii characters (Python has gotten very picky since the encoding patch:-). I also removed Donovan's different way of opening resource files: I don't seem to need it. | ||||
* | Better output for errors, and some progress reports. | Jack Jansen | 2002-08-05 | 1 | -1/+12 |
| | | | | Handle the two modules with non-standard scanner module names. | ||||
* | This can now run under unix-Python too. You have to pass the folder | Jack Jansen | 2002-08-05 | 1 | -2/+6 |
| | | | | to search on the command line in that case. | ||||
* | Added _IBCarbon module. | Jack Jansen | 2002-08-05 | 2 | -0/+3 |
| | |||||
* | Finally found out why te cf project sometimes worked and someimes didn't. ↵ | Jack Jansen | 2002-07-22 | 1 | -1/+1 |
| | | | | Fixed it. | ||||
* | Started on support for using standard setup.py to build at least | Jack Jansen | 2002-06-27 | 1 | -43/+66 |
| | | | | the "standard" modules. Unfinished, but shouldn't harm anything. | ||||
* | Disabled non-carbon builds (for the moment still optional) and made | Jack Jansen | 2002-06-26 | 2 | -20/+27 |
| | | | | these scripts work with the new precompiled headers. | ||||
* | - Better commandline interface to BuildApplet, complete with options, | Jack Jansen | 2002-06-09 | 1 | -4/+61 |
| | | | | | | | verbose output to the console, etc. - Allow Cocoa applets to be built with BuildApplet. No full testing has been done yet to ensure OS9 operation hasn't suffered. | ||||
* | Allow the shared library initialization routine to be overridden with an ↵ | Jack Jansen | 2002-05-23 | 1 | -3/+6 |
| | | | | | | initialize=xxx argument. Should fix #492465. | ||||
* | First part of fix for #493826: if 'errn' key exists in return value this ↵ | Jack Jansen | 2002-04-23 | 1 | -1/+1 |
| | | | | | | | | doesn't necesarily signal an error, only if the value is non-zero it does. This does not correspond with my reading of the documentation, but the OSX Finder can return 'errn'=0, and it knows better than me:-) Bugfix candidate. | ||||
* | Regenerated to include Internet Config error strings. | Jack Jansen | 2002-04-22 | 1 | -9/+72 |
| | | | | Bugfix candidate. | ||||
* | Added an optional file with MacErrors.h extensions: IC errors aren't in there. | Jack Jansen | 2002-04-22 | 2 | -0/+19 |
| | | | | Bugfix candidate. | ||||
* | Modified to allow it to run in MachoPython in a reasonable way. It still | Jack Jansen | 2002-03-30 | 1 | -10/+17 |
| | | | | needs a decent commandline interface, though. | ||||
* | Weaklink most toolbox modules, improving backward compatibility. Modules ↵ | Jack Jansen | 2002-03-24 | 1 | -12/+25 |
| | | | | | | 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. | ||||
* | - Weaklink InterfaceLib in _Res module | Jack Jansen | 2002-03-22 | 1 | -3/+6 |
| | | | | | | | - forgot to pass libraryflags and stdlibraryflags on to ppc/carbon project generation. First half of fix to 531398. | ||||
* | Modifed for new included expat. | Jack Jansen | 2002-03-14 | 1 | -6/+14 |
| | |||||
* | Get rid of keyword list and use keyword.iskeyword() function (which I wasn't ↵ | Jack Jansen | 2002-01-24 | 1 | -7/+3 |
| | | | | aware of previously). | ||||
* | "yield" is also a keyword. Spotted by Neal Norwitz. | Jack Jansen | 2002-01-24 | 1 | -1/+1 |
| | |||||
* | (Much) better list of Python keywords, supplied by Michael J. Barber. | Jack Jansen | 2002-01-23 | 1 | -3/+5 |
| | |||||
* | Newer names for various error include files. | Jack Jansen | 2002-01-22 | 1 | -2/+2 |
| | |||||
* | Build _tkinter for Carbon too. | Jack Jansen | 2002-01-22 | 1 | -2/+2 |
| | |||||
* | Identify() enum values. This was changed in 1.14, but I don't think it is a ↵ | Jack Jansen | 2002-01-22 | 1 | -1/+5 |
| | | | | good idea. | ||||
* | CodeWarrior includes Waste and Internet Config nowadays, obviating the need ↵ | Jack Jansen | 2002-01-11 | 1 | -18/+35 |
| | | | | for separate downloads. | ||||
* | The import of the scanner can also fail, cater for that. | Jack Jansen | 2001-12-14 | 1 | -1/+4 |
| | |||||
* | added CoreGraphics to build list | Just van Rossum | 2001-12-13 | 1 | -0/+1 |
| | |||||
* | added non-support for CoreGraphics... | Just van Rossum | 2001-12-13 | 1 | -0/+5 |
| | |||||
* | added CarbonEvents | Just van Rossum | 2001-12-12 | 2 | -0/+2 |
| | |||||
* | Not being able to copy PythonCore to the system-folder is not a fatal error, ↵ | Jack Jansen | 2001-12-07 | 2 | -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. | ||||
* | Link more modules with weak import, and add CarbonAccessors.o to all ↵ | Jack Jansen | 2001-12-05 | 1 | -6/+7 |
| | | | | relevant PowerPC toolbox modules. This, in combination with recent IDE mods, makes the IDE work again under MacOS 8.1. | ||||
* | Merged changes made on r22b2-branch between r22b2 and r22b2-mac (the | Jack Jansen | 2001-11-30 | 2 | -7/+12 |
| | | | | changes from start of branch upto r22b2 were already merged, of course). | ||||
* | Added hfsplusapi module. | Jack Jansen | 2001-11-06 | 2 | -0/+2 |
| | |||||
* | Added _hotshot. | Jack Jansen | 2001-10-23 | 2 | -0/+3 |
| | |||||
* | Updated the Popt resources for the applets to the newest version. | Jack Jansen | 2001-09-01 | 4 | -0/+0 |
| | |||||
* | Added preferences/startup options for division warning | Jack Jansen | 2001-09-01 | 2 | -7/+9 |
| | | | | and accepting unix-style newlines on input. | ||||
* | Added xx and xxsubtype modules, for completeness and because xxsubtype is ↵ | Jack Jansen | 2001-08-29 | 2 | -0/+7 |
| | | | | used by the test suite. | ||||
* | Use the new macresource module to open the accompanying resource file (if ↵ | Jack Jansen | 2001-08-27 | 4 | -18/+9 |
| | | | | needed). | ||||
* | These have long outlived there usefulness, in my opinion. Moved to Unsupported. | Jack Jansen | 2001-08-27 | 5 | -201/+0 |
| | |||||
* | Import the MacOS toolbox modules from the Carbon package. | Jack Jansen | 2001-08-25 | 10 | -29/+29 |
| | |||||
* | The MacOS toolbox modules have acquired an _ in front of their name. Normal ↵ | Jack Jansen | 2001-08-23 | 2 | -81/+87 |
| | | | | usage is through a wrapper module (without underscore) which lives in the Carbon package. | ||||
* | Various toolbox modules were generated in lib-dynload accidentally | Jack Jansen | 2001-08-20 | 1 | -3/+3 |
| | | | | in stead of in Carbon. Fixed. | ||||
* | Dynamic modules are now put in :Lib:lib-dynload by default. For the toolbox ↵ | Jack Jansen | 2001-08-19 | 1 | -37/+41 |
| | | | | modules this is overridden to put them in :Mac:Lib:Carbon. | ||||
* | If genpluginprojects is called from fullbuild we set the Python source ↵ | Jack Jansen | 2001-08-16 | 2 | -1/+5 |
| | | | | directory to be the same as fullbuild uses (in stead of using the default sys.prefix). This fixes an issue Mark Day raised that you can't use fullbuild with one Python installation to build another one. | ||||
* | Bit another bullet: all toolbox modules are now in dynamically loaded ↵ | Jack Jansen | 2001-08-07 | 2 | -25/+36 |
| | | | | modules. Everything still seems to work, but the ConfigurePythonXXX on initial install may still need work. | ||||
* | Use string.ascii_letters instead of string.letters (SF bug #226706). | Fred Drake | 2001-07-20 | 1 | -1/+1 |
| | |||||
* | Typo in the classic mlte build line. | Jack Jansen | 2001-07-16 | 1 | -1/+1 |
| |