OSX, csound.compile()

View: New views
9 Messages — Rating Filter:   Alert me  

OSX, csound.compile()

by Oeyvind Brandtsegg-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I'm testing Csound/Python on a Mac, using:
OSX 10.5
MacPython2.4.4
Csound5.08 OSX binary installer
wxPython 2.8 unicode for Python2.4
 
When running PartikkelExplorer.py (from the terminal), I get
$
csound loaded
Fatal Python error: PyThreadState_Get: no current thread
Csound tidy up: Abort trap
Abort trap
$
 
by inserting a print statements before and after the
self.csound.compile()
statement in cs/csModule.py
I can verify that the crash is related to that statement (csound.compile())
 
What could I do to try to make it work ?
 
I've tested the wxController.py example, and that works
(I rewrote the
from wxPython.wx import *
to
import wx
and changed subsequent references accordingly
to make wxController.py work)
 
best
Oeyvind

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel

Re: OSX, csound.compile()

by Victor.Lazzarini :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.
It's to do with some wrapping code I introduced. It'll
need to be fixed.
----- Original Message -----
Sent: Wednesday, June 25, 2008 10:04 PM
Subject: [Cs-dev] OSX, csound.compile()

I'm testing Csound/Python on a Mac, using:
OSX 10.5
MacPython2.4.4
Csound5.08 OSX binary installer
wxPython 2.8 unicode for Python2.4
 
When running PartikkelExplorer.py (from the terminal), I get
$
csound loaded
Fatal Python error: PyThreadState_Get: no current thread
Csound tidy up: Abort trap
Abort trap
$
 
by inserting a print statements before and after the
self.csound.compile()
statement in cs/csModule.py
I can verify that the crash is related to that statement (csound.compile())
 
What could I do to try to make it work ?
 
I've tested the wxController.py example, and that works
(I rewrote the
from wxPython.wx import *
to
import wx
and changed subsequent references accordingly
to make wxController.py work)
 
best
Oeyvind


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php


_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel

Re: OSX, csound.compile()

by Victor.Lazzarini :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.
In fact, this might already be fixed in the CVS sources, as
I can't find a call to PyThreadState_Get anywhere (I changed
the GIL functions earlier on in the year).
 
Regards
 
Victor
----- Original Message -----
Sent: Wednesday, June 25, 2008 10:04 PM
Subject: [Cs-dev] OSX, csound.compile()

I'm testing Csound/Python on a Mac, using:
OSX 10.5
MacPython2.4.4
Csound5.08 OSX binary installer
wxPython 2.8 unicode for Python2.4
 
When running PartikkelExplorer.py (from the terminal), I get
$
csound loaded
Fatal Python error: PyThreadState_Get: no current thread
Csound tidy up: Abort trap
Abort trap
$
 
by inserting a print statements before and after the
self.csound.compile()
statement in cs/csModule.py
I can verify that the crash is related to that statement (csound.compile())
 
What could I do to try to make it work ?
 
I've tested the wxController.py example, and that works
(I rewrote the
from wxPython.wx import *
to
import wx
and changed subsequent references accordingly
to make wxController.py work)
 
best
Oeyvind


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php


_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel

Re: OSX, csound.compile()

by Victor.Lazzarini :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.
But then I can't find a call to it in the older code as well. What is
csound.compile(), is that your code? As far as I can remember
the Csound class has a Compile() method, not compile().
----- Original Message -----
Sent: Wednesday, June 25, 2008 11:04 PM
Subject: Re: [Cs-dev] OSX, csound.compile()

In fact, this might already be fixed in the CVS sources, as
I can't find a call to PyThreadState_Get anywhere (I changed
the GIL functions earlier on in the year).
 
Regards
 
Victor
----- Original Message -----
Sent: Wednesday, June 25, 2008 10:04 PM
Subject: [Cs-dev] OSX, csound.compile()

I'm testing Csound/Python on a Mac, using:
OSX 10.5
MacPython2.4.4
Csound5.08 OSX binary installer
wxPython 2.8 unicode for Python2.4
 
When running PartikkelExplorer.py (from the terminal), I get
$
csound loaded
Fatal Python error: PyThreadState_Get: no current thread
Csound tidy up: Abort trap
Abort trap
$
 
by inserting a print statements before and after the
self.csound.compile()
statement in cs/csModule.py
I can verify that the crash is related to that statement (csound.compile())
 
What could I do to try to make it work ?
 
I've tested the wxController.py example, and that works
(I rewrote the
from wxPython.wx import *
to
import wx
and changed subsequent references accordingly
to make wxController.py work)
 
best
Oeyvind


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php


_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php


_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel

Re: OSX, csound.compile()

by Oeyvind Brandtsegg-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.
Thanks for the info.
 
No, csound.compile() is not my code,
but I use it in all my Python apps,
it is also used in the wxController.py example (checked the version installed with the windows 5.08 installer).
 
I tried replacing csoundcompile() with csound.Compile() in the wxController.py example,
and got this error:

Exception in thread Thread-1:
Traceback (most recent call last):
  File "C:\Python25\lib\threading.py", line 460, in __bootstrap
    self.run()
  File "C:\Python25\lib\threading.py", line 440, in run
    self.__target(*self.__args, **self.__kwargs)
  File "C:\Program Files\Csound_508\examples\wxController.py", line 70, in csoundThreadRoutine
    self.csound.Compile()
  File "C:\Program Files\Csound\bin\csnd.py", line 1373, in Compile
    return _csnd.Csound_Compile(*args)
NotImplementedError: Wrong number of arguments for overloaded function 'Csound_Compile'.
  Possible C/C++ prototypes are:
    Compile(int,char **)
    Compile(char *)
    Compile(char *,char *)
    Compile(char *,char *,char *)
    Compile(char *,char *,char *,char *)
    Compile(char *,char *,char *,char *,char *)

What should I use as the argument to csound.Compile() ?

Oeyvind

 

2008/6/26, victor <Victor.Lazzarini@...>:
But then I can't find a call to it in the older code as well. What is
csound.compile(), is that your code? As far as I can remember
the Csound class has a Compile() method, not compile().
----- Original Message -----
Sent: Wednesday, June 25, 2008 11:04 PM
Subject: Re: [Cs-dev] OSX, csound.compile()

 
In fact, this might already be fixed in the CVS sources, as
I can't find a call to PyThreadState_Get anywhere (I changed
the GIL functions earlier on in the year).
 
Regards
 
Victor
----- Original Message -----
Sent: Wednesday, June 25, 2008 10:04 PM
Subject: [Cs-dev] OSX, csound.compile()

 
I'm testing Csound/Python on a Mac, using:
OSX 10.5
MacPython2.4.4
Csound5.08 OSX binary installer
wxPython 2.8 unicode for Python2.4
 
When running PartikkelExplorer.py (from the terminal), I get
$
csound loaded
Fatal Python error: PyThreadState_Get: no current thread
Csound tidy up: Abort trap
Abort trap
$
 
by inserting a print statements before and after the
self.csound.compile()
statement in cs/csModule.py
I can verify that the crash is related to that statement (csound.compile())
 
What could I do to try to make it work ?
 
I've tested the wxController.py example, and that works
(I rewrote the
from wxPython.wx import *
to
import wx
and changed subsequent references accordingly
to make wxController.py work)
 
best
Oeyvind


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php


_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php


_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel



-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel

Parent Message unknown Re: OSX, csound.compile()

by Michael Gogins :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

If you use help or dir on the object, or if you look at the Csound API referenced, you will see that it has both a CppSound::compile and a Csound::Compile method. CppSound derives from Csound and CsoundFile.

This is the due to the common situation in Csound development of different developers re-implementing the same or similar ideas for slightly different purposes, in this case me with CppSound::compile (which came first, in spite of the fact that CppSound now derives from Csound) and Istvan Varga with Csound::Compile (which is a thin header file class wrapping the C Csound API).

Regards,
Mike

-----Original Message-----

>From: victor <Victor.Lazzarini@...>
>Sent: Jun 25, 2008 6:13 PM
>To: Developer discussions <csound-devel@...>
>Subject: Re: [Cs-dev] OSX, csound.compile()
>
>But then I can't find a call to it in the older code as well. What is
>csound.compile(), is that your code? As far as I can remember
>the Csound class has a Compile() method, not compile().
>  ----- Original Message -----
>  From: victor
>  To: Developer discussions
>  Sent: Wednesday, June 25, 2008 11:04 PM
>  Subject: Re: [Cs-dev] OSX, csound.compile()
>
>
>  In fact, this might already be fixed in the CVS sources, as
>  I can't find a call to PyThreadState_Get anywhere (I changed
>  the GIL functions earlier on in the year).
>
>  Regards
>
>  Victor
>    ----- Original Message -----
>    From: Oeyvind Brandtsegg
>    To: Developer discussions
>    Sent: Wednesday, June 25, 2008 10:04 PM
>    Subject: [Cs-dev] OSX, csound.compile()
>
>
>    I'm testing Csound/Python on a Mac, using:
>    OSX 10.5
>    MacPython2.4.4
>    Csound5.08 OSX binary installer
>    wxPython 2.8 unicode for Python2.4
>    
>    When running PartikkelExplorer.py (from the terminal), I get
>    $
>    csound loaded
>    Fatal Python error: PyThreadState_Get: no current thread
>    Csound tidy up: Abort trap
>    Abort trap
>    $
>
>    by inserting a print statements before and after the
>    self.csound.compile()
>    statement in cs/csModule.py
>    I can verify that the crash is related to that statement (csound.compile())
>
>    What could I do to try to make it work ?
>
>    I've tested the wxController.py example, and that works
>    (I rewrote the
>    from wxPython.wx import *
>    to
>    import wx
>    and changed subsequent references accordingly
>    to make wxController.py work)
>
>    best
>    Oeyvind
>
>
>----------------------------------------------------------------------------
>
>
>    -------------------------------------------------------------------------
>    Check out the new SourceForge.net Marketplace.
>    It's the best place to buy or sell services for
>    just about anything Open Source.
>    http://sourceforge.net/services/buy/index.php 
>
>
>----------------------------------------------------------------------------
>
>
>    _______________________________________________
>    Csound-devel mailing list
>    Csound-devel@...
>    https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
>
>------------------------------------------------------------------------------
>
>
>  -------------------------------------------------------------------------
>  Check out the new SourceForge.net Marketplace.
>  It's the best place to buy or sell services for
>  just about anything Open Source.
>  http://sourceforge.net/services/buy/index.php
>
>
>------------------------------------------------------------------------------
>
>
>  _______________________________________________
>  Csound-devel mailing list
>  Csound-devel@...
>  https://lists.sourceforge.net/lists/listinfo/csound-devel




-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel

Re: OSX, csound.compile()

by Oeyvind Brandtsegg-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.
The situation seems very strange, and it is hard to debug, as it works differently on different platforms (windows/OSX). Moreover, I only temporary had access to the OSX machine, so I'm working in the dark when trying to solve this from windows.
 
Could someone (preferably more than one) please try to run this application:
 
There might be issues related to my Python code, or the problems might stem from the Csound API. As far as I can see I do use the CsoundAPI correctly, and the code runs fine on windows. However, there are several ways to set up the separate Csound thread in Python, so some subtle differences might lead to this problem when trying to run the same code on OSX.
 
best
Oeyvind
 
2008/6/26, victor <Victor.Lazzarini@...>:
In fact, this might already be fixed in the CVS sources, as
I can't find a call to PyThreadState_Get anywhere (I changed
the GIL functions earlier on in the year).
 
Regards
 
Victor
----- Original Message -----
Sent: Wednesday, June 25, 2008 10:04 PM
Subject: [Cs-dev] OSX, csound.compile()

 
I'm testing Csound/Python on a Mac, using:
OSX 10.5
MacPython2.4.4
Csound5.08 OSX binary installer
wxPython 2.8 unicode for Python2.4
 
When running PartikkelExplorer.py (from the terminal), I get
$
csound loaded
Fatal Python error: PyThreadState_Get: no current thread
Csound tidy up: Abort trap
Abort trap
$
 
by inserting a print statements before and after the
self.csound.compile()
statement in cs/csModule.py
I can verify that the crash is related to that statement (csound.compile())
 
What could I do to try to make it work ?
 
I've tested the wxController.py example, and that works
(I rewrote the
from wxPython.wx import *
to
import wx
and changed subsequent references accordingly
to make wxController.py work)
 
best
Oeyvind


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php


_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel



-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel

Parent Message unknown Re: OSX, csound.compile()

by Victor.Lazzarini :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Well, I can say is that I will have a look. However, I'm off on
Holidays in a week's
time and next week is admin hell at my department, so it's looking
like mid-July
before I can check on it. Is that alright?

Victor

At 12:01 27/06/2008, you wrote:

>The situation seems very strange, and it is hard to debug, as it
>works differently on different platforms (windows/OSX). Moreover, I
>only temporary had access to the OSX machine, so I'm working in the
>dark when trying to solve this from windows.
>
>Could someone (preferably more than one) please try to run this application:
><http://oeyvind.teks.no/ftp/PartikkelExplorer_july2008.zip>http://oeyvind.teks.no/ftp/PartikkelExplorer_july2008.zip 
>
>on OSX
>
>There might be issues related to my Python code, or the problems
>might stem from the Csound API. As far as I can see I do use the
>CsoundAPI correctly, and the code runs fine on windows. However,
>there are several ways to set up the separate Csound thread in
>Python, so some subtle differences might lead to this problem when
>trying to run the same code on OSX.
>
>best
>Oeyvind
>
>2008/6/26, victor
><<mailto:Victor.Lazzarini@...>Victor.Lazzarini@...>:
>In fact, this might already be fixed in the CVS sources, as
>I can't find a call to PyThreadState_Get anywhere (I changed
>the GIL functions earlier on in the year).
>
>Regards
>
>Victor
>----- Original Message -----
>From: <mailto:obrandts@...>Oeyvind Brandtsegg
>To: <mailto:csound-devel@...>Developer discussions
>Sent: Wednesday, June 25, 2008 10:04 PM
>Subject: [Cs-dev] OSX, csound.compile()
>
>
>I'm testing Csound/Python on a Mac, using:
>OSX 10.5
>MacPython2.4.4
>Csound5.08 OSX binary installer
>wxPython 2.8 unicode for Python2.4
>
>When running PartikkelExplorer.py (from the terminal), I get
>$
>csound loaded
>Fatal Python error: PyThreadState_Get: no current thread
>Csound tidy up: Abort trap
>Abort trap
>$
>
>by inserting a print statements before and after the
>self.csound.compile()
>statement in cs/csModule.py
>I can verify that the crash is related to that statement (csound.compile())
>
>What could I do to try to make it work ?
>
>I've tested the wxController.py example, and that works
>(I rewrote the
>from wxPython.wx import *
>to
>import wx
>and changed subsequent references accordingly
>to make wxController.py work)
>
>best
>Oeyvind
>
>
>----------
>-------------------------------------------------------------------------
>Check out the new SourceForge.net Marketplace.
>It's the best place to buy or sell services for
>just about anything Open Source.
><http://sourceforge.net/services/buy/index.php>http://sourceforge.net/services/buy/index.php 
>
>
>
>----------
>_______________________________________________
>Csound-devel mailing list
><mailto:Csound-devel@...>Csound-devel@...
>https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
>-------------------------------------------------------------------------
>Check out the new SourceForge.net Marketplace.
>It's the best place to buy or sell services for
>just about anything Open Source.
><http://sourceforge.net/services/buy/index.php>http://sourceforge.net/services/buy/index.php
>_______________________________________________
>Csound-devel mailing list
><mailto:Csound-devel@...>Csound-devel@...
>https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
>-------------------------------------------------------------------------
>Check out the new SourceForge.net Marketplace.
>It's the best place to buy or sell services for
>just about anything Open Source.
>http://sourceforge.net/services/buy/index.php
>_______________________________________________
>Csound-devel mailing list
>Csound-devel@...
>https://lists.sourceforge.net/lists/listinfo/csound-devel

Victor Lazzarini
Music Technology Laboratory
Music Department
National University of Ireland, Maynooth


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel

Re: OSX, csound.compile()

by Oeyvind Brandtsegg-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Yes it's ok, Victor.
 
It would of great help if someone else could try to run it on their OSX system sometime before that,
as this might give me some clues to work on in the meantime.
 
best
Oeyvind

 
2008/6/27, Victor Lazzarini <Victor.Lazzarini@...>:
Well, I can say is that I will have a look. However, I'm off on
Holidays in a week's
time and next week is admin hell at my department, so it's looking
like mid-July
before I can check on it. Is that alright?

Victor

At 12:01 27/06/2008, you wrote:
>The situation seems very strange, and it is hard to debug, as it
>works differently on different platforms (windows/OSX). Moreover, I
>only temporary had access to the OSX machine, so I'm working in the
>dark when trying to solve this from windows.
>
>Could someone (preferably more than one) please try to run this application:
><http://oeyvind.teks.no/ftp/PartikkelExplorer_july2008.zip>http://oeyvind.teks.no/ftp/PartikkelExplorer_july2008.zip
>
>on OSX
>
>There might be issues related to my Python code, or the problems
>might stem from the Csound API. As far as I can see I do use the
>CsoundAPI correctly, and the code runs fine on windows. However,
>there are several ways to set up the separate Csound thread in
>Python, so some subtle differences might lead to this problem when
>trying to run the same code on OSX.
>
>best
>Oeyvind
>
>2008/6/26, victor
><<mailto:Victor.Lazzarini@...>Victor.Lazzarini@...>:
>In fact, this might already be fixed in the CVS sources, as
>I can't find a call to PyThreadState_Get anywhere (I changed
>the GIL functions earlier on in the year).
>
>Regards
>
>Victor
>----- Original Message -----
>From: <mailto:obrandts@...>Oeyvind Brandtsegg
>To: <mailto:csound-devel@...>Developer discussions
>Sent: Wednesday, June 25, 2008 10:04 PM
>Subject: [Cs-dev] OSX, csound.compile()
>
>
>I'm testing Csound/Python on a Mac, using:
>OSX 10.5
>MacPython2.4.4
>Csound5.08 OSX binary installer
>wxPython 2.8 unicode for Python2.4
>
>When running PartikkelExplorer.py (from the terminal), I get
>$
>csound loaded
>Fatal Python error: PyThreadState_Get: no current thread
>Csound tidy up: Abort trap
>Abort trap
>$
>
>by inserting a print statements before and after the
>self.csound.compile()
>statement in cs/csModule.py
>I can verify that the crash is related to that statement (csound.compile())
>
>What could I do to try to make it work ?
>
>I've tested the wxController.py example, and that works
>(I rewrote the

>from wxPython.wx import *
>to
>import wx
>and changed subsequent references accordingly
>to make wxController.py work)
>
>best
>Oeyvind
>
>
>----------
>-------------------------------------------------------------------------
>Check out the new SourceForge.net Marketplace.
>It's the best place to buy or sell services for
>just about anything Open Source.
><http://sourceforge.net/services/buy/index.php>http://sourceforge.net/services/buy/index.php
>
>
>
>----------
>_______________________________________________
>Csound-devel mailing list
><mailto:Csound-devel@...>Csound-devel@...
>https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
>-------------------------------------------------------------------------
>Check out the new SourceForge.net Marketplace.
>It's the best place to buy or sell services for
>just about anything Open Source.
><http://sourceforge.net/services/buy/index.php>http://sourceforge.net/services/buy/index.php
>_______________________________________________
>Csound-devel mailing list
><mailto:Csound-devel@...>Csound-devel@...
>https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
>-------------------------------------------------------------------------
>Check out the new SourceForge.net Marketplace.
>It's the best place to buy or sell services for
>just about anything Open Source.
>http://sourceforge.net/services/buy/index.php
>_______________________________________________
>Csound-devel mailing list
>Csound-devel@...
>https://lists.sourceforge.net/lists/listinfo/csound-devel

Victor Lazzarini
Music Technology Laboratory
Music Department
National University of Ireland, Maynooth


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Csound-devel mailing list
Csound-devel@...
https://lists.sourceforge.net/lists/listinfo/csound-devel