Hello, I just updated to beta 1, and I found a problem with some of the translated parameters in functions.
Test case:
from rpy2.robjects.packages import importr
base = importr("base")
sequence = list(base.seq(-10, 0, length_out=2))
len(sequence)
Result: 11 # wrong
parameter = {"length.out":2}
sequence = list(base.seq(-10, 0, **parameter))
len(sequence)
Result: 2 # Correct
Is this a bug? If so, where should I report it?
--
Luca Beltrame, Ph.D. - [email protected]
Post-doctoral research fellow - Duccio Cavalieri group
Department of Pharmacology, University of Firenze
signature.asc
Description: This is a digitally signed message part.
------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev
_______________________________________________ rpy-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/rpy-list
