At a python interpreter, one can simply type help("name")
to visit documentation for name.
Thanks in advance.
Try these:
(documentation #'cons 'function)
(documentation 'most-positive-fixnum 'variable)
(describe #'cons)
Slime also has a bunch of shortcuts for looking at things: slime-describe-symbol
, slime-inspect
(and if you have the hyperspec sitting around, slime-documentation-lookup
) might all be useful.