From 2b91966061ead3c4aa260033e95cfc4adb396496 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 21 Sep 2005 10:52:33 +0000 Subject: __str__ method for pyext, to enable print self calls python-like dotted module.function syntax multiply inlets for py (hot and cold inlets) enable symbol binding for all callables (not only functions and methods) enable optimization of Python code in reease build _isthreaded is now a data member instead of a method compiler flag to exclude DSP objects some ASSERTs for explicitly created pyext classes (should be runtime checks i guess) cleaned up float vs. int pyext tags more safety for calls where association python-pd has already been removed open editor for module file on "edit" message (or click) let _inlets and _outlets default to 0 svn path=/trunk/; revision=3610 --- externals/grill/py/source/pybase.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'externals/grill/py/source/pybase.cpp') diff --git a/externals/grill/py/source/pybase.cpp b/externals/grill/py/source/pybase.cpp index b7a112e9..09fd8687 100644 --- a/externals/grill/py/source/pybase.cpp +++ b/externals/grill/py/source/pybase.cpp @@ -101,7 +101,10 @@ void pybase::lib_setup() Py_Initialize(); #ifdef FLEXT_DEBUG + Py_DebugFlag = 1; // Py_VerboseFlag = 1; +#else + Py_OptimizeFlag = 1; #endif #ifdef FLEXT_THREADS -- cgit v1.2.1