=============
New features
------------
- For ipython and Jupyter notebooks, R "magics" accepting optional input arguments
(`-i` or `--input`) can now be of form `<python-name>` or
`<r-name>=<python-name>`. The former is the way is has been working so far:
the R object is given the name of the Python object. The latter allows to
specify the name under which the input object will be known to R. In addition
to that the python name can optionally be a path, that is a name nested in a
sequence of namespaces. For example, `-i module.varname`. The magics
concerned are `%R`, `%%R`, and `%Rpush` (issues 934 and 935).
- For ipython and Jupyter notebooks, R "magics" accepting an optional conversion
argument (`-c/--converter`) now also accepts names that are a path in Python,
that is a name nested in a sequence of namespaces. For example,
`-c rpy2.robjects.default_converter` (issue 934).
- The "magic" `%Rpush` accepts an optional argument `-c/--converter` that is
similar in nature to the argument of the same name in `%R` and `%%R`.
Bugs fixed
----------
- :class:`rpy2.rlike.container.TaggedList` objects were triggering an error when unpickled (issue 947).
- Converting :class:`pandas.Series` of type `"object"` with a fallback
to R strings no longer fails with an error (issue 916).
Changes
-------
- :meth:`rpy2.robjects.help.Page.iteritems` is deprecated. Use the method `items()` instead.
- Calling :func:`str` on rpy2 objects that are proxies of R objects is now
using R's `print()` whenever R's `show()` results in an error (issue 908).