view tests/example/python_script.py @ 9:895b8191cced

add some example files to test
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 22 Nov 2011 16:57:41 -0800
parents
children
line wrap: on
line source

#!/usr/bin/env

"""
some sort of python script
"""

def main():
    pass

if __name__ == '__main__':
    main()