AUTHORS:
INPUT:
OUTPUT:
Raises an ImportError exception if anything goes wrong.
INPUT:
OUTPUT: changes globals using the attributes of the Cython module that do not begin with an underscore.
Raises an ImportError exception if anything goes wrong.
Format obj_name‘s docstring for printing in Sage notebook.
AUTHORS:
Display help on s.
Note
This a wrapper around the built-in help. If formats the output as HTML without word wrap, which looks better in the notebook.
INPUT:
OUTPUT: prints out help about s; it’s often more more extensive than foo?
TESTS:
sage: import numpy.linalg
sage: import os, sage.misc.misc ; current_dir = os.getcwd()
sage: os.chdir(sage.misc.misc.tmp_dir('server_doctest'))
sage: sage.server.support.help(numpy.linalg.norm)
<html><table notracebacks bgcolor="#386074" cellpadding=10 cellspacing=10><tr><td bgcolor="#f5f5f5"><font color="#37546d">
<a target='_new' href='cell://docs-....html'>Click to open help window</a>
<br></font></tr></td></table></html>
sage: os.chdir(current_dir)
Format obj’s source code for printing in Sage notebook.
AUTHORS: