This repository was archived by the owner on Feb 1, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 4646
4747Next, test the ``pinfo`` magic for ``R`` interface code, see :trac:`26906`::
4848
49- sage: from sage.repl.interpreter import get_test_shell
50- sage: shell = get_test_shell()
51- sage: shell.run_cell(u'%pinfo r.lm')
49+ sage: from sage.repl.interpreter import get_test_shell # optional - rpy2
50+ sage: shell = get_test_shell() # optional - rpy2
51+ sage: shell.run_cell(u'%pinfo r.lm') # optional - rpy2
5252 Signature: r.lm(...*args, **kwds)
5353 ...
5454 String form: lm
@@ -122,9 +122,9 @@ def __cinit__(self):
122122
123123Next, test the ``pinfo2`` magic for ``R`` interface code, see :trac:`26906`::
124124
125- sage: from sage.repl.interpreter import get_test_shell
126- sage: shell = get_test_shell()
127- sage: shell.run_cell(u'%pinfo2 r.lm')
125+ sage: from sage.repl.interpreter import get_test_shell # optional - rpy2
126+ sage: shell = get_test_shell() # optional - rpy2
127+ sage: shell.run_cell(u'%pinfo2 r.lm') # optional - rpy2
128128 Signature: r.lm(...*args, **kwds)
129129 ...
130130 String form: lm
You can’t perform that action at this time.
0 commit comments