For bpython it would be good to do get help show as ipython ()
for example: in ipython i can type symbol "?" after something command
and i see help about it.
for example:
""
In [1]: enumerate?
Type: type
Base Class: <type 'type'>
String Form: <type 'enumerate'>
Namespace: Python builtin
Docstring:
enumerate(iterable) -> iterator for index, value of iterable
Return an enumerate object. iterable must be another object that
supports
iteration. The enumerate object yields pairs containing a count
(from
zero) and a value yielded by the iterable argument. enumerate is
useful
for obtaining an indexed list: (0, seq[0]), (1, seq[1]), (2,
seq[2]), ...
In [2]:
""
I think that alike it bpyton must have this fanctionality too.
Thanks
--
You received this message because you are subscribed to the Google Groups
"bpython" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/bpython?hl=en.