Re: [Rpy] rpy and mod_python problem

2008-07-17 Thread Laurent Gautier
p, support and design discussion list > Subject: Re: [Rpy] rpy and mod_python problem > > > Thanks for posting it. > > I am not a C stack expert, but I suspect that there is a reason why it is not > unlimited by default. I would particularly consider putting somehow a limit > t

Re: [Rpy] rpy and mod_python problem

2008-07-14 Thread Toby Hocking
om: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Toby Hocking > Sent: Wednesday, June 25, 2008 9:29 AM > To: RPy help, support and design discussion list > Subject: Re: [Rpy] rpy and mod_python problem > > > I'm inclined to think that it is NOT an inherent inc

Re: [Rpy] rpy and mod_python problem

2008-07-14 Thread Laurent Gautier
> [mailto:[EMAIL PROTECTED] Behalf Of Toby Hocking > Sent: Wednesday, June 25, 2008 9:29 AM > To: RPy help, support and design discussion list > Subject: Re: [Rpy] rpy and mod_python problem > > > I'm inclined to think that it is NOT an inherent incompatibility problem wit

Re: [Rpy] rpy and mod_python problem

2008-07-07 Thread Toby Hocking
-2.7 with rpy and Apache2/mod_python/Django. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Toby Hocking Sent: Wednesday, June 25, 2008 9:29 AM To: RPy help, support and design discussion list Subject: Re: [Rpy] rpy and mod_python problem I'm inclin

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Toby Hocking
Gautier Sent: Wednesday, June 25, 2008 11:45 AM To: RPy help, support and design discussion list Subject: Re: [Rpy] rpy and mod_python problem 2008/6/25 Toby Hocking <[EMAIL PROTECTED]>: > I'm inclined to think that it is NOT an inherent incompatibility problem with > mod_python and R

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Laurent Gautier
would rpy2 w/ R-2.7 and Python 2.5 behave ? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Christof > Winter > Sent: Wednesday, June 25, 2008 7:54 AM > To: RPy help, support and design discussion list > Subject: Re: [Rpy] rpy and

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Toby Hocking
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Christof Winter Sent: Wednesday, June 25, 2008 7:54 AM To: RPy help, support and design discussion list Subject: Re: [Rpy] rpy and mod_python problem Laurent Gautier wrote, On 06/25/08 15:47: > Wild guess: this h

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Christof Winter
Laurent Gautier wrote, On 06/25/08 15:47: > Wild guess: this has something to do with the multiple interpreters > http://www.modpython.org/live/current/doc-html/pyapi-interps.html > > (reading the doc Python's C-level "Py_NewInterpreter()" is hinting that > this is likely the nature of the problem

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Laurent Gautier
use of from rpy import * is documented, e.g. at >> http://rpy.sourceforge.net/rpy/doc/rpy_html/Small-example.html#Small-example >> >> >> Cheers, >> Christof >> >> >> Re: [Rpy] rpy and mod_python problem >> From: Renato Alves <[EMAIL PROTECT

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Christof Winter
ehalf Of Christof Winter > Sent: Wednesday, June 11, 2008 12:58 PM To: rpy-list@lists.sourceforge.net > Subject: [Rpy] rpy and mod_python problem > > > I tried to include use rpy within a Python script that runs on a mod_python > Apache server. Upon import with from rpy im

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Christof Winter
ed for the mailing list >> until now. >> I tried the import rpy, it gives exactly the same error message. >> >> The use of from rpy import * is documented, e.g. at >> http://rpy.sourceforge.net/rpy/doc/rpy_html/Small-example.html#Small-example >> >> &g

Re: [Rpy] rpy and mod_python problem

2008-06-25 Thread Renato Alves
t; > The use of from rpy import * is documented, e.g. at > http://rpy.sourceforge.net/rpy/doc/rpy_html/Small-example.html#Small-example > > > Cheers, > Christof > > > Re: [Rpy] rpy and mod_python problem > From: Renato Alves <[EMAIL PROTECTED]> - 2008-06-12 16:13 > It's no

Re: [Rpy] rpy and mod_python problem

2008-06-24 Thread Toby Hocking
-list@lists.sourceforge.net Subject: [Rpy] rpy and mod_python problem I tried to include use rpy within a Python script that runs on a mod_python Apache server. Upon import with from rpy import *, I get RPy_Exception: R Function "get" not found The full error stack trace is pasted below.

Re: [Rpy] rpy and mod_python problem

2008-06-12 Thread Renato Alves
It's not a good python practice to use: from somewhere import * Instead consider using: from somewhere import function1, function2, function3 ... (as needed) or simply: import rpy In the last case you will be using "rpy.r" instead of "r". Can you test if this works for your mod_python setup

[Rpy] rpy and mod_python problem

2008-06-12 Thread Christof Winter
I tried to include use rpy within a Python script that runs on a mod_python Apache server. Upon import with from rpy import *, I get RPy_Exception: R Function "get" not found The full error stack trace is pasted below. Any ideas? There was a similar post concerning django, with the same error m