Last active
August 29, 2015 13:59
-
-
Save skytreader/10620200 to your computer and use it in GitHub Desktop.
pydoc test
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
""" | |
An __init__ file, to make this a package. | |
""" |
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
from spam import spams | |
""" | |
Spam-made eggs. | |
""" | |
def eggs(): | |
""" | |
Returns 'Yarr Monty Python!' | |
""" | |
return "Yarr Monty Python!" |
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
""" | |
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