blob: 3ba5a893dad36ee3f7cab2b63f506ee09a21dc7b [file] [log] [blame]
Jack Jansenf7e57142001-09-08 21:38:26 +00001Changes in 2.2a3 since 2.1.1
Jack Jansen028f2d52001-08-29 22:04:08 +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 Jansenf7e57142001-09-08 21:38:26 +00005for machine-independent changes.
Jack Jansenecbc1cc1998-01-06 12:13:16 +00006
Jack Jansen028f2d52001-08-29 22:04:08 +00007- The main change is that all toolbox modules have moved to a package called Carbon.
8 So things like "import Res" should be changed to "from Carbon import Res", and
9 "from Res import *" to "from Carbon.Res import *". Please see the readme file for
10 some open questions and join the discussions on pythonmac-sig if you have anything
11 to contribute. Aside from reducing clutter this change will also benefit the
12 port to Mach-O/OSX Python later.
13- On input MacPython now accepts either \n (unix style) or \r (mac style) newlines
Jack Jansenf7e57142001-09-08 21:38:26 +000014 for text files. This behaviour can be turned off with a preference.
15 This is an experimental feature; again: feedback is requested.
Jack Jansen028f2d52001-08-29 22:04:08 +000016- There is a new module macresource which makes it easier to open a resource file
17 accompanying your script when the script is not (yet) converted to an applet.
18 This module will later also do the right thing in Mach-O/OSX Python.
19- Threads had a stack that was too small for many serious Python applications (20K).
20 They now get 64K. There is still no overflow check, though.
21- Garbage collection and the gc module have (finally) been enabled.
22- EasyDialogs.ProgressBar now has indeterminate progressbars if you specify maxval=0.
23 This is also the new default. Patch supplied by Dean Draayer.
Jack Jansenf7e57142001-09-08 21:38:26 +000024- There are new preferences for enabling old-style division warnings and for
25 accepting unix-style newlines in text input files. These can also be set during
26 startup, and in addition you can select very verbose import tracing.
Jack Jansen028f2d52001-08-29 22:04:08 +000027- Various outdated scripts have been moved to :Mac:Unsupported.
28- Various outdated items from :Mac:Lib:test have been removed.
Jack Jansen26d7c142000-09-11 22:47:12 +000029
30What is not in this distribution
31--------------------------------
32
Jack Jansen028f2d52001-08-29 22:04:08 +000033- Stackless Python/microthreads hasn't been ported to 2.2 yet. If/when it becomes available
Jack Jansende519092000-10-12 21:21:43 +000034 Just will undoubtedly announce it on pythonmac-sig and the MacPython homepage.
Jack Jansen028f2d52001-08-29 22:04:08 +000035- The toolbox modules have not been updated to Universal Header 3.4 or CarbonLib 1.4 yet.
Jack Jansen26d7c142000-09-11 22:47:12 +000036
37Known problems
38--------------
39
Jack Jansenc1218bc2001-04-25 22:11:24 +000040This list is probably incomplete, more problems may be listed on the MacPython homepage,
Jack Jansen26d7c142000-09-11 22:47:12 +000041http://www.cwi.nl/~jack/macpython.html.
42
Jack Jansenf7e57142001-09-08 21:38:26 +000043- MacPython 2.2a3 (and MacPython 2.1) will not run correctly on a multiprocessor MacOS X
Jack Jansencbed91b2001-08-03 13:31:36 +000044 machine, it will quickly deadlock during I/O operations. The GUSI I/O library is suspected,
45 hints/clues/workarounds are solicited.
Jack Jansen9de05f42001-03-20 23:30:38 +000046- Tkinter does not work under Carbon.
Jack Jansen26d7c142000-09-11 22:47:12 +000047- The IDE and Tkinter do not work together. Run tkinter programs under PythonInterpreter.
Jack Jansen4c522032001-03-08 23:07:16 +000048- Tkinter file events do not work, unless you have opened the file through Tcl (but then
49 you cannot access it from Python).
Jack Jansenc1218bc2001-04-25 22:11:24 +000050- Aliases may not work in sys.path entries.
51- Under Carbon on OS9 only you may occasionally see a spurious KeyboardInterrupt. I have absolutely
Jack Jansen2f9a9e32001-02-17 22:03:42 +000052 no clue as to what is causing this.
Jack Jansen4c522032001-03-08 23:07:16 +000053- PythonInterpreter used interactively will eat a lot of processor cycles. You should use
Jack Jansenc1218bc2001-04-25 22:11:24 +000054 PythonIDE for interactive work and PythonInterpreter for scripts only. This is especially
55 true under OSX.
Jack Jansencbed91b2001-08-03 13:31:36 +000056- AliasMenu 2.2 conflicts with the Carbon version of Python. This is most likely a problem
57 with AliasMenu (which is from 1999, and thus predates Carbon altogether).