Updated for 1.3

This commit is contained in:
Jack Jansen 1995-10-09 23:26:05 +00:00
parent 83f45401e8
commit 9bd2d970b8
2 changed files with 52 additions and 28 deletions

View File

@ -1,4 +1,4 @@
How to install Python 1.3beta3 on your Macintosh How to install Python 1.3 on your Macintosh
------------------------------------------------ ------------------------------------------------
Even if you don't usually read readme files: please read at least the Even if you don't usually read readme files: please read at least the
@ -9,11 +9,6 @@ with a fresh distribution. Especially don't forget to remove the
"python preferences" file from the Preferences folder, and possibly "python preferences" file from the Preferences folder, and possibly
"PythonCore" from the Extensions folder. "PythonCore" from the Extensions folder.
Next: this is a beta distribution, so (a) things may be broken and (b)
the instructions are probably far from complete (or correct:-). I'm counting
on you to send me feedback on any problems you encounter or suggestions
you have!
If this is your first encounter with python: you definitely need the common If this is your first encounter with python: you definitely need the common
user documentation (common to all platforms). You can find this (in various user documentation (common to all platforms). You can find this (in various
forms) on www.python.org and ftp.python.org. forms) on www.python.org and ftp.python.org.
@ -33,24 +28,17 @@ something a little less drastic.
PowerPC Macintosh instructions PowerPC Macintosh instructions
------------------------------ ------------------------------
1. You will have to create some aliases in the 'PlugIns' folder. There is 1. Remove older versions of "PythonCore" and "Python Preferences"
an AppleScript there that will create them for you. If you don't have from your system folder.
AppleScript you will have to create the aliases by hand, read the script
to see what to do. Alternatively, if you have still have an older, but
fairly recent version of python already on your system: try the
MkPluginAliases script from the Scripts folder.
[If someone nows of a way to create relative aliases or of a simple way 2. Run the MkPluginAliases applet. This will first ask you whether it should
to create aliases on a target system without knowing pathnames in advance: create an initial preferences file. Let it do so. Next, it will create a
please let me know] number of aliases in the PlugIns folder. If this fails in mysterious ways
try using the applescript in the PlugIns folder to create the aliases.
2. At this point you should remove older versions of "PythonCore" and If that also fails: examine the script and create the aliases by hand
"Python Preferences" from your system folder. (and tell me what you did to make either of these two fail:-).
3. Next, you should run PythonPPC. This will create an initial preferences 3. To make sure any applets you create can find the common interpreter code
file (after asking you if that's ok with you).
4. To make sure any applets you create can find the common interpreter code
you should move PythonCore to the Extensions folder (drop it on the you should move PythonCore to the Extensions folder (drop it on the
System Folder and it will find its own way). Alternatively, you can System Folder and it will find its own way). Alternatively, you can
make an alias called "PythonCore" in the Extensions folder and make an alias called "PythonCore" in the Extensions folder and
@ -58,7 +46,7 @@ PowerPC Macintosh instructions
again at this point to check that you actually put the extension in again at this point to check that you actually put the extension in
the right place. the right place.
5. You're all set now. Continue with the common instructions. 4. You're all set now. Continue with the common instructions.
68K Macintosh instructions 68K Macintosh instructions
-------------------------- --------------------------
@ -67,7 +55,7 @@ PowerPC Macintosh instructions
have one (the file, that is, not the folder:-). have one (the file, that is, not the folder:-).
2. Run Python68K. This will create an initial preferences file (after 2. Run Python68K. This will create an initial preferences file (after
asking you if that's ok with you). asking you if that's ok with you). Quit python.
3. Continue with the next section. 3. Continue with the next section.

View File

@ -1,14 +1,15 @@
Changes since 1.3beta3 Changes since 1.3beta3
---------------------- ----------------------
- MkPluginAliases.py now works in a virgin distribution environment - MkPluginAliases.py now works in a virgin distribution environment. It is
also distributed as an applet.
- hexbin from binhex.py has been fixed - hexbin from binhex.py has been fixed
- various bits and pieces in readme files clarified - various bits and pieces in readme files clarified
- mkapplet bug wrt owner resource (and, hence, trouble starting applets) fixed. - mkapplet bug wrt owner resource (and, hence, trouble starting applets) fixed.
- Compiled with CodeWarrior 7.
- AE client modules generated with gensuitemodule.py now use keyword args.
Changes since Python 1.2 for the mac Changes since Python 1.2 for the mac
------------------------------------ ------------------------------------
These relnotes are relative to the last "official" MacPython release,
not to the intermediate releases.
- PPC python now uses a shared library organization. This allows the - PPC python now uses a shared library organization. This allows the
creation of dynamically loadable extension modules (contact me) and creation of dynamically loadable extension modules (contact me) and
creation of python applets (see mkapplet.py). A number of previously creation of python applets (see mkapplet.py). A number of previously
@ -70,4 +71,39 @@ not to the intermediate releases.
- binhextree: Binhex all files in a tree, depending on the extension. - binhextree: Binhex all files in a tree, depending on the extension.
- (PPC only) mkapplet: Create a python applet from a sourcefile and - (PPC only) mkapplet: Create a python applet from a sourcefile and
(optional) resourcefile. (optional) resourcefile.
Known problems
--------------
- 68K python reacts rather violently to out-of-memory situations. In
stead of raising MemoryError it will crash, possibly bringing down the
whole system. This is being investigated.
- The installation procedure is baroque. Ideas for improvement are welcome.
- The full documentation should be ported to AppleGuide. This should be
a fairly simple automatic translation but I am not well-versed enough in
AppleGuide to do it. Any takers?
What will change shortly
------------------------
I am planning to do an intermediate release shortly (1.3.1??), mainly
because Guido was so fast with 1.3 that I didn't have time to do some
things I wanted. Expect the following changes shortly (note that some are
incompatible):
- CFM68K support,bringing applets and dynamic loading to the 68K macs.
- Bgen-generated toolbox interfaces will go to a different place,
probably :Lib:mac:toolbox
- Resource objects now often perform the role of a Handle object. This
will change with the introduction of a Handle object and some sort of
simulated inheritance.
- AE suites generated with gensuitemodule will be restructured, whereby it
will be easier to override/extend standard suites. Also, server suites
will also be generated, and hopefully objects will be supported.
- Event handling is currently rather messy, with python, SIOUX, stdwin and
the python application all fighting over the events. This will somehow
be changed.
Jack Jansen, jack@cwi.nl
10-Oct-95