Skip to content

Instantly share code, notes, and snippets.

@skytreader
Last active August 29, 2015 13:59
Show Gist options
  • Save skytreader/10620200 to your computer and use it in GitHub Desktop.
Save skytreader/10620200 to your computer and use it in GitHub Desktop.
pydoc test
"""
An __init__ file, to make this a package.
"""
from spam import spams
"""
Spam-made eggs.
"""
def eggs():
"""
Returns 'Yarr Monty Python!'
"""
return "Yarr Monty Python!"
"""
Spam module is spam.
"""
def spams():
"""
Returns 'Say yes to spam. GMail can handle it.'
"""
return "Say yes to spam. GMail can handle it."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment