On 2/28/07, Helena Verrill wrote: > Another thing, while I remember: > occassionally, by mistake, I've called something a > function name, e.g., > I've put > list = [1,2,3] > then I realise I want to use the list function, but > now list is [1,2,3]... > how do I get back to the original meaning of list? > I've done this by mistake for a number of different > things, and only know how to put it right by restarting.
It's all in the builtin module: sage: import __builtin__ sage: __builtin__.list([1,2]) [1, 2] --~--~---------~--~----~------------~-------~--~----~ 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://sage.math.washington.edu/sage/ and http://sage.scipy.org/sage/ -~----------~----~----~----~------~----~------~--~---
