Skip to content

Instantly share code, notes, and snippets.

@bmacauley
Last active December 15, 2015 12:49
Show Gist options
  • Save bmacauley/5262995 to your computer and use it in GitHub Desktop.
Save bmacauley/5262995 to your computer and use it in GitHub Desktop.
module skeleton, long version
#!/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