""" Hi i intended to list the built-in function using this function. It seems however to give me the results corresponding with a dictionary. Why is that ? """"
def showbuiltins():
""" saves the list of built in functions to a file you chose """
blist = dir(__builtins__)
print blist
import asl
drawer, file = asl.FileRequest('Select a file where to save the list of built-ins', 'ram:BI_list', '', '')
file = drawer + file
print file
bfile = open(file,"w")
for item in blist:
bfile.write(item + "\n")
bfile.close()