Jack Jansen | 9de05f4 | 2001-03-20 23:30:38 +0000 | [diff] [blame] | 1 | Changes in 2.1b2 since 2.0 |
Jack Jansen | 538bd13 | 2000-10-19 21:58:27 +0000 | [diff] [blame] | 2 | -------------------------- |
Jack Jansen | ecbc1cc | 1998-01-06 12:13:16 +0000 | [diff] [blame] | 3 | |
Jack Jansen | 26d7c14 | 2000-09-11 22:47:12 +0000 | [diff] [blame] | 4 | These release notes refer to Mac-specific changes only. See NEWS (in the Misc folder) |
Jack Jansen | 9de05f4 | 2001-03-20 23:30:38 +0000 | [diff] [blame] | 5 | for machine-independent changes. Changes since 2.1b1 are |
Jack Jansen | cbe7b1c | 2001-03-06 22:42:12 +0000 | [diff] [blame] | 6 | marked with [*] and at the bottom of the list. |
Jack Jansen | ecbc1cc | 1998-01-06 12:13:16 +0000 | [diff] [blame] | 7 | |
Jack Jansen | 9de05f4 | 2001-03-20 23:30:38 +0000 | [diff] [blame] | 8 | - This release is Carbon-based, so it runs natively on MacOS 8.6 or |
Jack Jansen | 2f9a9e3 | 2001-02-17 22:03:42 +0000 | [diff] [blame] | 9 | later and MacOSX. |
Jack Jansen | cbe7b1c | 2001-03-06 22:42:12 +0000 | [diff] [blame] | 10 | - Alternatively there is a classic PPC interpreter as well. There are two reasons you |
| 11 | might want to use this: (a) you have a pre-MacOS9 system and don't want to install |
| 12 | CarbonLib, or (b) you need Tkinter, for which no Carbon version is available yet. |
Jack Jansen | 2f9a9e3 | 2001-02-17 22:03:42 +0000 | [diff] [blame] | 13 | - Distutils is included and seems to work. |
| 14 | - There's a new module (package, actually) mkcwproject which builds CodeWarrior |
| 15 | projects from simple templates. See Distutils or :Mac:scripts:genpluginprojects.py |
| 16 | for examples of use. |
| 17 | - Windows and Dialogs can now be different beasts, so you may have to call |
| 18 | dlg.GetDialogWindow() where you used to be able to call window methods straight |
| 19 | on the dialog. This also has consequences for code using FrameWork.DialogWindow. |
| 20 | THIS IS AN INCOMPATIBLE CHANGE. |
| 21 | - ctl.GetControlDataHandle() has been renamed to GetControlData_Handle(), and similarly |
| 22 | for the other variants of GetControlData and SetControlData. This was needed |
| 23 | because Carbon defines a completely different routine with the name GetControlDataHandle. |
| 24 | THIS IS AN INCOMPATIBLE CHANGE. |
| 25 | - Method mac.xstat() has disappeared. THIS IS AN INCOMPATIBLE CHANGE. |
| 26 | - Menu.SetPopupData() and GetPopupData() are gone. Use SetPopupMenuHandle() and |
| 27 | SetPopupMenuID() (and the getters) in stead. THIS IS AN INCOMPATIBLE CHANGE. |
| 28 | - Various methods have disappeared when running under Carbon. The script |
| 29 | :Mac:scripts:missingcarbonmethods.py can check your sources, but you need unix to run |
| 30 | it. Or use it as documentation and search by hand. THIS IS AN INCOMPATIBLE CHANGE. |
| 31 | - The good news is that "direct access to toolbox structs" still works from Python, |
| 32 | so Python programmers have a lot less to fix than C programmers. |
| 33 | That's because the lowlevel code simply uses the accessors internally. The accessors |
| 34 | are available both in Carbon and Classic MacPython. |
| 35 | - Scrap under Carbon is, you guessed it, the Carbon Scrap Manager. Some workarounds are |
| 36 | provided, though. THIS IS AN INCOMPATIBLE CHANGE. |
| 37 | - The Internet Config routines that are missing from Carbon have been removed. This |
| 38 | is no problem if you use the "ic" module, but may be if you use "icglue" directly. |
| 39 | THIS IS AN INCOMPATIBLE CHANGE. |
| 40 | - Various old toolbox names (CountMItems, EnableItem, etc) have disappeared. Use the |
| 41 | new forms (CountMenuItems, EnableMenuItem, etc). THIS IS AN INCOMPATIBLE CHANGE. |
| 42 | - Waste now uses Waste 2.0. |
| 43 | - The default memory size for the interpreter has been upped again. |
| 44 | - The MacOS error messages have been updated to reflect the current state of |
| 45 | things. This was long overdue. |
| 46 | - The crash in BuildApplication has been fixed. |
| 47 | - struct.pack related problems (in Audio_Mac, for example) have been fixed. |
| 48 | - (src/dev/cvs only): The project files now use the .mcp extension in stead of .prj. |
| 49 | Projects for almost all plugins and the img modules are automatically generated |
| 50 | with :Mac:scripts:genpluginprojects.py (also called by fullbuild). The .mcp files |
| 51 | are not in the repository, if you don't want to use genpluginprojects you can import |
| 52 | the .mcp.xml files in CodeWarrior. |
Jack Jansen | 24033e3 | 2001-02-27 23:24:07 +0000 | [diff] [blame] | 53 | - ConfigurePython has been replace by two applets: ConfigurePythonClassic and |
| 54 | ConfigurePythonCarbon. These will select either execution model for machines |
Jack Jansen | 9de05f4 | 2001-03-20 23:30:38 +0000 | [diff] [blame] | 55 | supporting both, and it will also build all the standard applets. |
Jack Jansen | cbe7b1c | 2001-03-06 22:42:12 +0000 | [diff] [blame] | 56 | - PythonInterpreterCarbon and PythonInterpreterClassic are now files of type "Atmp", not |
| 57 | "APPL", so there should not be any confusion as to what the real application is |
Jack Jansen | 9de05f4 | 2001-03-20 23:30:38 +0000 | [diff] [blame] | 58 | (PythonInterpreter). |
| 59 | - A BBEdit language module by Chris Stern is included in the :Mac:Contrib folder. |
Jack Jansen | 8ef786e | 2001-03-15 14:27:09 +0000 | [diff] [blame] | 60 | - The ConfigurePython applets will now detect if the preference file refers to a different |
Jack Jansen | 9de05f4 | 2001-03-20 23:30:38 +0000 | [diff] [blame] | 61 | folder than where they live. They offer to remove the preference file in this case. |
| 62 | - Import case-check was broken in 2.1b1, this is fixed. [*] |
| 63 | - A side-effect of the previous fix is that getpass works again. [*] |
| 64 | - BuildApplication was broken under Carbon. Fixed. [*] |
Jack Jansen | 46e1302 | 2000-09-24 22:01:53 +0000 | [diff] [blame] | 65 | |
Jack Jansen | 26d7c14 | 2000-09-11 22:47:12 +0000 | [diff] [blame] | 66 | |
| 67 | What is not in this distribution |
| 68 | -------------------------------- |
| 69 | |
Jack Jansen | 2f9a9e3 | 2001-02-17 22:03:42 +0000 | [diff] [blame] | 70 | - The garbage collection mods have not been enabled, mainly due to lack of test-time. |
Jack Jansen | 8ef786e | 2001-03-15 14:27:09 +0000 | [diff] [blame] | 71 | - Stackless Python/microthreads hasn't been ported to 2.1 yet. If/when it becomes available |
Jack Jansen | de51909 | 2000-10-12 21:21:43 +0000 | [diff] [blame] | 72 | Just will undoubtedly announce it on pythonmac-sig and the MacPython homepage. |
Jack Jansen | 26d7c14 | 2000-09-11 22:47:12 +0000 | [diff] [blame] | 73 | |
| 74 | Known problems |
| 75 | -------------- |
| 76 | |
| 77 | This list is far from complete, more problems may be listed on the MacPython homepage, |
| 78 | http://www.cwi.nl/~jack/macpython.html. |
| 79 | |
Jack Jansen | 9de05f4 | 2001-03-20 23:30:38 +0000 | [diff] [blame] | 80 | - Tkinter does not work under Carbon. |
Jack Jansen | 26d7c14 | 2000-09-11 22:47:12 +0000 | [diff] [blame] | 81 | - The IDE and Tkinter do not work together. Run tkinter programs under PythonInterpreter. |
Jack Jansen | 4c52203 | 2001-03-08 23:07:16 +0000 | [diff] [blame] | 82 | - After running a Tkinter program your menubar may end up dead, with command-alt-escape |
| 83 | the only way to terminate Python. |
| 84 | - Tkinter file events do not work, unless you have opened the file through Tcl (but then |
| 85 | you cannot access it from Python). |
Jack Jansen | 26d7c14 | 2000-09-11 22:47:12 +0000 | [diff] [blame] | 86 | - Aliases do not work in sys.path entries. |
Jack Jansen | 2f9a9e3 | 2001-02-17 22:03:42 +0000 | [diff] [blame] | 87 | - The menu bar isn't always correctly restored before MacPython turns to <<terminated>>. |
| 88 | - Under Carbon only you may occasionally see a spurious KeyboardInterrupt. I have absolutely |
| 89 | no clue as to what is causing this. |
Jack Jansen | 4c52203 | 2001-03-08 23:07:16 +0000 | [diff] [blame] | 90 | - PythonInterpreter used interactively will eat a lot of processor cycles. You should use |
| 91 | PythonIDE for interactive work and PythonInterpreter for scripts only. |
Jack Jansen | 8ef786e | 2001-03-15 14:27:09 +0000 | [diff] [blame] | 92 | - Under MacOSX Public Beta ConfigurePython cannot put PythonCore in the global CFMSupport |
| 93 | folder. Therefore applets have to live in the Python folder, otherwise they cannot find |
| 94 | PythonCore. There is a workaround if you want to have an applet in a different folder: |
| 95 | put an alias PythonCoreCarbon (pointing to the PythonCoreCarbon in the Python folder) |
| 96 | in the same folder as your applet. |
| 97 | This problem should in all probability not occur in the release version of MacOSX. |