Last active
December 15, 2015 12:49
-
-
Save bmacauley/5262995 to your computer and use it in GitHub Desktop.
module skeleton, long version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: ascii -*- | |
""" | |
Module Docstring | |
Docstrings: http://www.python.org/dev/peps/pep-0257/ | |
""" | |
__author__ = 'Joe Author ([email protected])' | |
__copyright__ = 'Copyright (c) 2009-2010 Joe Author' | |
__license__ = 'New-style BSD' | |
__vcs_id__ = '$Id$' | |
__version__ = '1.2.3' #Versioning: http://www.python.org/dev/peps/pep-0386/ | |
# | |
## Code goes here. | |
# | |
def test(): | |
""" Testing Docstring""" | |
pass | |
if __name__=='__main__': | |
test() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment