[Rpy] [ rpy-Bugs-1956376 ] rpy 1.0~rc1segfault with bioconductor packages

2008-05-04 Thread SourceForge.net
Bugs item #1956376, was opened at 2008-05-02 18:43 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=453021&aid=1956376&group_id=48422 Please note that this message will contain a full copy o

[Rpy] [ rpy-Bugs-1956434 ] rpy 1.0~rc1segfault with bioconductor packages

2008-05-04 Thread SourceForge.net
Bugs item #1956434, was opened at 2008-05-02 20:42 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=453021&aid=1956434&group_id=48422 Please note that this message will contain a full copy o

[Rpy] SF.net SVN: rpy: [509] branches/rpy_nextgen

2008-05-04 Thread lgautier
Revision: 509 http://rpy.svn.sourceforge.net/rpy/?rev=509&view=rev Author: lgautier Date: 2008-05-04 20:26:35 -0700 (Sun, 04 May 2008) Log Message: --- rinterface: - modified the signature to initEmbeddedR - alias rinterface to ri for some tests - added comments in the C

Re: [Rpy] although different variable assigment, returns same value

2008-05-04 Thread Thomas Juntunen
On Tue, 29 Apr 2008 10:51:42 +0300, volkan kepoglu wrote: def a(b=0): > ... f = open("c:/temp/easy.R", "w") > ... f.write ("sigma <- " + str(b)) > ... f.close() You defined function a() with a named parameter, b, that has a default of 0 a(5) # "sigma <- 5" You called a() with a positi