blob: 772ea566a227586ae4574656c1117879cfc884b6 [file] [log] [blame]
Jack Jansenc1218bc2001-04-25 22:11:24 +00001Changes in 2.1 since 2.0
Jack Jansen538bd132000-10-19 21:58:27 +00002--------------------------
Jack Jansenecbc1cc1998-01-06 12:13:16 +00003
Jack Jansen26d7c142000-09-11 22:47:12 +00004These release notes refer to Mac-specific changes only. See NEWS (in the Misc folder)
Jack Jansenc1218bc2001-04-25 22:11:24 +00005for machine-independent changes. Changes since 2.1b2 are
Jack Jansencbe7b1c2001-03-06 22:42:12 +00006marked with [*] and at the bottom of the list.
Jack Jansenecbc1cc1998-01-06 12:13:16 +00007
Jack Jansenc1218bc2001-04-25 22:11:24 +00008- This release is optionally Carbon-based, so it runs natively on MacOS 8.1 or
Jack Jansen2b73fe92001-03-27 21:38:55 +00009 later and MacOSX. (Note that on MacOSX MacPython will run as a normal Mac application,
10 if you want to run Python from the BSD commandline get a unix-Python distribution
Jack Jansenc1218bc2001-04-25 22:11:24 +000011 from www.python.org).
Jack Jansencbe7b1c2001-03-06 22:42:12 +000012- Alternatively there is a classic PPC interpreter as well. There are two reasons you
13 might want to use this: (a) you have a pre-MacOS9 system and don't want to install
14 CarbonLib, or (b) you need Tkinter, for which no Carbon version is available yet.
Jack Jansenc1218bc2001-04-25 22:11:24 +000015- Distutils is included and seems to work. On 8.1 you may want to get Apple's
16 CarbonLib installer even if you plan to run classic, it contains the newer Appearance
17 Mgr which Python needs (according to rumour).
Jack Jansen2f9a9e32001-02-17 22:03:42 +000018- There's a new module (package, actually) mkcwproject which builds CodeWarrior
19 projects from simple templates. See Distutils or :Mac:scripts:genpluginprojects.py
20 for examples of use.
Jack Jansen2b73fe92001-03-27 21:38:55 +000021- The Numerical extension has moved to :Lib:site-python from :Extensions. As Numerical
22 is now distutils-based you can easily install newer versions when they become
23 available.
Jack Jansen3aee7752001-04-06 09:02:43 +000024- The Help and ctb modules are not available under Carbon because that functionality is
25 not in Carbon.
Jack Jansen2f9a9e32001-02-17 22:03:42 +000026- Windows and Dialogs can now be different beasts, so you may have to call
27 dlg.GetDialogWindow() where you used to be able to call window methods straight
28 on the dialog. This also has consequences for code using FrameWork.DialogWindow.
29 THIS IS AN INCOMPATIBLE CHANGE.
30- ctl.GetControlDataHandle() has been renamed to GetControlData_Handle(), and similarly
31 for the other variants of GetControlData and SetControlData. This was needed
32 because Carbon defines a completely different routine with the name GetControlDataHandle.
33 THIS IS AN INCOMPATIBLE CHANGE.
34- Method mac.xstat() has disappeared. THIS IS AN INCOMPATIBLE CHANGE.
35- Menu.SetPopupData() and GetPopupData() are gone. Use SetPopupMenuHandle() and
36 SetPopupMenuID() (and the getters) in stead. THIS IS AN INCOMPATIBLE CHANGE.
37- Various methods have disappeared when running under Carbon. The script
38 :Mac:scripts:missingcarbonmethods.py can check your sources, but you need unix to run
39 it. Or use it as documentation and search by hand. THIS IS AN INCOMPATIBLE CHANGE.
40- The good news is that "direct access to toolbox structs" still works from Python,
41 so Python programmers have a lot less to fix than C programmers.
42 That's because the lowlevel code simply uses the accessors internally. The accessors
43 are available both in Carbon and Classic MacPython.
44- Scrap under Carbon is, you guessed it, the Carbon Scrap Manager. Some workarounds are
45 provided, though. THIS IS AN INCOMPATIBLE CHANGE.
46- The Internet Config routines that are missing from Carbon have been removed. This
47 is no problem if you use the "ic" module, but may be if you use "icglue" directly.
48 THIS IS AN INCOMPATIBLE CHANGE.
49- Various old toolbox names (CountMItems, EnableItem, etc) have disappeared. Use the
50 new forms (CountMenuItems, EnableMenuItem, etc). THIS IS AN INCOMPATIBLE CHANGE.
51- Waste now uses Waste 2.0.
52- The default memory size for the interpreter has been upped again.
53- The MacOS error messages have been updated to reflect the current state of
54 things. This was long overdue.
55- The crash in BuildApplication has been fixed.
56- struct.pack related problems (in Audio_Mac, for example) have been fixed.
57- (src/dev/cvs only): The project files now use the .mcp extension in stead of .prj.
58 Projects for almost all plugins and the img modules are automatically generated
59 with :Mac:scripts:genpluginprojects.py (also called by fullbuild). The .mcp files
60 are not in the repository, if you don't want to use genpluginprojects you can import
61 the .mcp.xml files in CodeWarrior.
Jack Jansen24033e32001-02-27 23:24:07 +000062- ConfigurePython has been replace by two applets: ConfigurePythonClassic and
63 ConfigurePythonCarbon. These will select either execution model for machines
Jack Jansen9de05f42001-03-20 23:30:38 +000064 supporting both, and it will also build all the standard applets.
Jack Jansencbe7b1c2001-03-06 22:42:12 +000065- PythonInterpreterCarbon and PythonInterpreterClassic are now files of type "Atmp", not
66 "APPL", so there should not be any confusion as to what the real application is
Jack Jansen9de05f42001-03-20 23:30:38 +000067 (PythonInterpreter).
68- A BBEdit language module by Chris Stern is included in the :Mac:Contrib folder.
Jack Jansen8ef786e2001-03-15 14:27:09 +000069- The ConfigurePython applets will now detect if the preference file refers to a different
Jack Jansen9de05f42001-03-20 23:30:38 +000070 folder than where they live. They offer to remove the preference file in this case.
Jack Jansenc1218bc2001-04-25 22:11:24 +000071- Import case-check was broken in 2.1b1, this is fixed.
72- A side-effect of the previous fix is that getpass works again.
73- BuildApplication was broken under Carbon. Fixed.
74- Morefindertools functionality integrated into findertools. [*]
75- ped.py from Mac:Demo crashed, this has been fixed by making Win.WhichWindow more robust. [*]
76- Tkinter mainloop is now a little less aggressive in eating events. [*]
77- The Python console window is raised to the front when input is read. This fixes a hang
78 (for Carbon only) when crashing with a modal dialog open. [*]
79- The menu bar is (again) restored when Python is terminating. [*]
Jack Jansen46e13022000-09-24 22:01:53 +000080
Jack Jansen26d7c142000-09-11 22:47:12 +000081
82What is not in this distribution
83--------------------------------
84
Jack Jansen2f9a9e32001-02-17 22:03:42 +000085- The garbage collection mods have not been enabled, mainly due to lack of test-time.
Jack Jansen8ef786e2001-03-15 14:27:09 +000086- Stackless Python/microthreads hasn't been ported to 2.1 yet. If/when it becomes available
Jack Jansende519092000-10-12 21:21:43 +000087 Just will undoubtedly announce it on pythonmac-sig and the MacPython homepage.
Jack Jansen26d7c142000-09-11 22:47:12 +000088
89Known problems
90--------------
91
Jack Jansenc1218bc2001-04-25 22:11:24 +000092This list is probably incomplete, more problems may be listed on the MacPython homepage,
Jack Jansen26d7c142000-09-11 22:47:12 +000093http://www.cwi.nl/~jack/macpython.html.
94
Jack Jansen9de05f42001-03-20 23:30:38 +000095- Tkinter does not work under Carbon.
Jack Jansen26d7c142000-09-11 22:47:12 +000096- The IDE and Tkinter do not work together. Run tkinter programs under PythonInterpreter.
Jack Jansen4c522032001-03-08 23:07:16 +000097- Tkinter file events do not work, unless you have opened the file through Tcl (but then
98 you cannot access it from Python).
Jack Jansenc1218bc2001-04-25 22:11:24 +000099- Aliases may not work in sys.path entries.
100- Under Carbon on OS9 only you may occasionally see a spurious KeyboardInterrupt. I have absolutely
Jack Jansen2f9a9e32001-02-17 22:03:42 +0000101 no clue as to what is causing this.
Jack Jansen4c522032001-03-08 23:07:16 +0000102- PythonInterpreter used interactively will eat a lot of processor cycles. You should use
Jack Jansenc1218bc2001-04-25 22:11:24 +0000103 PythonIDE for interactive work and PythonInterpreter for scripts only. This is especially
104 true under OSX.