On Mar 20, 2009, at 1:43 PM, meitnik wrote: > Another quick option: is there a way to get a listing of all the > commands/functions/keywords used in SAGE (the top level not at the > source code level)? Can that listing be done within context of topical > arrangement?? Inside SAGE in a cell or exported as a text file? > Thanks.
Try sage: globals().keys() This will give a long list of everything defined at the top level. sage: [name for name, func in globals().items() if callable(func)] Will give all the functions. Note sage: len(globals().keys()) # 3.4 1712 - Robert --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---
