Hi,

<Advertisement>

#11287 adds two developper tools in sage.misc.dev_tools:

- An interface to the graphical profiler runsnake:

     sage: runsnake("list(SymmetricGroup(3))")

  See [1] for a screenshot.

- A function import_statements:

        sage: import_statements(WeylGroup, lazy_attribute)
        from sage.combinat.root_system.weyl_group import WeylGroup
        from sage.misc.lazy_attribute import lazy_attribute

        sage: import_statements(WeylGroup, lazy_attribute, lazy=True)
        from sage.misc.lazy_import import lazy_import
        lazy_import('sage.combinat.root_system.weyl_group', 'WeylGroup')
        lazy_import('sage.misc.lazy_attribute', 'lazy_attribute')

</Advertisement>

Franco is reviewing this ticket, but feedback is welcome.

On a related note, we really should have an interface to gprof2dot to
visualize call graphs. This is now #11291. Volunteers?

Cheers,
                                Nicolas

[1] 
http://trac.sagemath.org/sage_trac/attachment/ticket/11287/runsnake-screenshot.png
--
Nicolas M. ThiƩry "Isil" <nthi...@users.sf.net>
http://Nicolas.Thiery.name/

-- 
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to 
sage-devel+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URL: http://www.sagemath.org

Reply via email to