the elpy docs describe C-c C-d to call help and it dumps the help in a buffer. Is it possible to send lines from that to the python buffer? For example, if I see
>>> d = {'a': 1, 'b': 2, 'c': 3}
>>> ser = pd.Series(data=d, index=['a', 'b', 'c'])
>>> ser
is there a way to send these lines like I can send lines from R help in ESS? Thanks everybody