On Wednesday, May 4, 2016 at 5:26:03 PM UTC+2, mmarco wrote:
>
> Overall, I think that the problem with documentation is worse than the 
> gain with tab-completion, but it would be so nice if we could do something 
> like:
> sage: n.transpose().[tab] 
>

You can do that already:

sage: n = matrix(QQ, 2)
sage: %config IPCompleter.greedy=True
sage: n.transpose().[TAB]
Display all 230 possibilities? (y or n)
n.transpose().C                                 
 n.transpose().hessenbergize                     
 n.transpose().permute_rows_and_columns
n.transpose().H                                  n.transpose().image       
                       n.transpose().pfaffian
n.transpose().I                                 
 n.transpose().indefinite_factorization           n.transpose().pivot_rows

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to