Mercurial > mozilla > hg > licenser
annotate tests/example/python_script.py @ 16:0b51868bdfb9
better documentation
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 24 Nov 2011 13:03:15 -0800 |
parents | 895b8191cced |
children |
rev | line source |
---|---|
9
895b8191cced
add some example files to test
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
1 #!/usr/bin/env |
895b8191cced
add some example files to test
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
2 |
895b8191cced
add some example files to test
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
3 """ |
895b8191cced
add some example files to test
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
4 some sort of python script |
895b8191cced
add some example files to test
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
5 """ |
895b8191cced
add some example files to test
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
6 |
895b8191cced
add some example files to test
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
7 def main(): |
895b8191cced
add some example files to test
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
8 pass |
895b8191cced
add some example files to test
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
9 |
895b8191cced
add some example files to test
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
10 if __name__ == '__main__': |
895b8191cced
add some example files to test
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
11 main() |