aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/readme.txt
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-11-03 20:36:42 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-11-03 20:36:42 +0000
commit5376005e3c82ab7a3464ca6405696916f8f2e6bd (patch)
tree8151165e254dad75ec3da1e4dc97cecfbd36cd04 /externals/grill/py/readme.txt
parent0f833c72de82b8d9fdcd53b4f10ffdb986382c85 (diff)
display error messages if calling __init__ or _del caused an exception
updated docs compiler flag to exclude DSP objects pyext: fix for missing __init__ attribute some ASSERTs for explicitly created pyext classes (should be runtime checks i guess) let _inlets and _outlets default to 0 svn path=/trunk/; revision=3829
Diffstat (limited to 'externals/grill/py/readme.txt')
-rw-r--r--externals/grill/py/readme.txt72
1 files changed, 39 insertions, 33 deletions
diff --git a/externals/grill/py/readme.txt b/externals/grill/py/readme.txt
index dcd10461..805b1d35 100644
--- a/externals/grill/py/readme.txt
+++ b/externals/grill/py/readme.txt
@@ -9,6 +9,45 @@ Visit https://www.paypal.com/xclick/business=gr%40grrrr.org&item_name=pyext&no_n
----------------------------------------------------------------------------
+You need to have Python installed on your system for the py/pyext external to work.
+For Windows pick an up-to-date package from http://www.python.org .
+For linux use the package manager.
+For OS X keep things as the are - it has Python installed by default.
+
+
+The py/pyext package should run with Python version >= 2.1.
+It has been thoroughly tested with versions 2.2 to 2.4
+
+----------------------------------------------------------------------------
+
+Goals/features of the package:
+
+Access the flexibility of the python language in PD and MaxMSP
+
+
+PD - Load it as i library with e.g. "pd -lib py -path scripts"
+
+
+
+Check out the sample patches and scripts
+
+
+Description:
+
+With the py object you can load python modules and execute the functions therein.
+With the pyext you can use python classes to represent full-featured pd/Max message objects.
+Multithreading (detached methods) is supported for both objects.
+You can send messages to named objects or receive (with pyext) with Python methods.
+
+
+Known bugs:
+- The TCL/TK help patch is not usable under OSX.
+- With standard PD 0.37, threaded py scripts will cause "Stack overflows" under some circumstances
+ -> use PD 0.38 or the devel_0_37 cvs branch instead
+- It has been reported that pyext crashes on AMD64 with SSE enabled (for these CPUs, disable the respective compiler flags)
+
+----------------------------------------------------------------------------
+
BUILDING from source
--------------------
@@ -51,39 +90,6 @@ to avoid a compile-time type definition clash.
----------------------------------------------------------------------------
-Goals/features of the package:
-
-Access the flexibility of the python language in PD and MaxMSP
-
-
-PD - Load it as i library with e.g. "pd -lib py -path scripts"
-
-
-
-Check out the sample patches and scripts
-
-
-Description:
-
-With the py object you can load python modules and execute the functions therein.
-With the pyext you can use python classes to represent full-featured pd/Max message objects.
-Multithreading (detached methods) is supported for both objects.
-You can send messages to named objects or receive (with pyext) with Python methods.
-
-
-Known bugs:
-- The TCL/TK help patch is not usable under OSX.
-- With standard PD 0.37, threaded py scripts will cause "Stack overflows" under some circumstances
- -> use PD 0.38 or the devel_0_37 cvs branch instead
-- It has been reported that pyext crashes on AMD64 with SSE enabled (for these CPUs, disable the respective compiler flags)
-
-----------------------------------------------------------------------------
-
-The py/pyext package should run with Python version >= 2.1.
-It has been thoroughly tested with versions 2.2 to 2.4
-
-----------------------------------------------------------------------------
-
Version history:
0.2.1: