## Copyright (c) 2006 Bruce Vaughan, BV Detailing & Design, Inc. ## All rights reserved. ############################################################### """Print a sorted global dictionary listing""" def run_script(): from macrolib.PrintDict import formatDict print formatDict("Global variables currently defined:", globals()) if __name__ == '__main__': run_script() del run_script print "\n'run_script()' was deleted from the global dictionary."