Hello,

> On Fri, May 18, 2012 at 07:36:51AM -0700, Frédéric Chapoton wrote:
>>    trying to test my own files on sage 5.0, it seems that it takes many
>>    import statements. Some of them behave strangely :
>>
>>    sage: import_statements(euler_phi)
>>    from sage.rings.arith import Number of positive integers <=n but
>>    relatively prime to n
>>
>>    sage: import_statements(QQ)
>>    from sage.rings.rational_field import Rational Field

Now with import_statements-vd.patch applied

{{{
sage: import_statements(euler_phi)
from sage.rings.arith import euler_phi
sage: import_statements(QQ)
from sage.all import QQ
}}}

The hack is very weak (uses find and grep from the shell) but mainly
works. Feel free to improve.

Cheers,
Vincent

-- 
You received this message because you are subscribed to the Google Groups 
"sage-combinat-devel" group.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.

Reply via email to