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