Re: [Tutor] Documentation and top matter

2009-01-04 Thread Alan Gauld
"wormwood_3" wrote #!/usr/bin/env python #- """ My awesome purpose. """ author = "My Name" date_started = "2001-01-01" version = 0.1 #- IMPORT

[Tutor] Documentation and top matter

2009-01-04 Thread wormwood_3
While PEP 8 and PEP 257 provide ample helpful information on the recommended ways to document classes, functions, and comments within code, I am having a hard time finding recommendations on how to document scripts by way of top matter. For example, I used this format for a while: #!/usr/bin/en