Source code for openalea.oalab.service.r2py

# Add header here

""" Service that implements adaptation from a Python object to and from a R object.

Unused for the moment
"""

__all__ = ['py2r', 'r2py']


[docs]def py2r(pyobj): return pyobj
[docs]def r2py(robj): return robj