#19923: Tab completion in interpreters is borked
-------------------------------------+-------------------------------------
       Reporter:  vbraun             |        Owner:
           Type:  defect             |       Status:  needs_work
       Priority:  major              |    Milestone:  sage-7.1
      Component:  interfaces         |   Resolution:
       Keywords:                     |    Merged in:
        Authors:  Volker Braun       |    Reviewers:  Vincent Delecroix
Report Upstream:  N/A                |  Work issues:
         Branch:                     |       Commit:
  u/vbraun/tab_completion_in_interpreters_is_borked|  
dca07708886ede19480e8b1dbdde8b8ba16c473b
   Dependencies:                     |     Stopgaps:
-------------------------------------+-------------------------------------
Changes (by vdelecroix):

 * status:  needs_review => needs_work
 * reviewer:   => Vincent Delecroix


Comment:

 The `__dir__` of `gap.SymmetricGroup(3)` is actually
 {{{
 def __dir__(self):
     from sage.structure.parent import dir_with_other_class
     return dir_with_other_class(self,
 self.parent().category().element_class)
 }}}
 and does not inherit from `ExtraTabCompletion`
 {{{
 sage: G = gap.SymmetricGroup(3)
 sage: from sage.interfaces.tab_completion import ExtraTabCompletion
 sage: isinstance(G, ExtraTabCompletion)
 False
 }}}

--
Ticket URL: <http://trac.sagemath.org/ticket/19923#comment:3>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

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

Reply via email to