Re: [sage-devel] Returned value introspection

2010-04-18 Thread Justin C. Walker
On Apr 18, 2010, at 10:19 , Andrey Novoseltsev wrote: Suppose I have a scheme S. Then I can type sage: S.amb to get sage: S.ambient_space Then I can do sage: A = S.ambient_space() sage: A.coo to get sage: A.coordinate_ring Is it at all possible to make sage: S.ambient_space().coo yield sage: S

[sage-devel] Returned value introspection

2010-04-18 Thread Andrey Novoseltsev
Suppose I have a scheme S. Then I can type sage: S.amb to get sage: S.ambient_space Then I can do sage: A = S.ambient_space() sage: A.coo to get sage: A.coordinate_ring Is it at all possible to make sage: S.ambient_space().coo yield sage: S.ambient_space().coordinate_ring ? For example, if OUTPUT