Re: restructured text in python

2008-04-24 Thread Jeroen Ruigrok van der Werven
-On [20080424 13:16], bdsatish ([EMAIL PROTECTED]) wrote: >#!/usr/bin/env #!/usr/bin/env what? I guess you meant #!/usr/bin/env python >""" >Author: BDS >Version: 1.0 >""" > >def Hello(): >""" Prints a Hello World to the screen""" >print "Hello, World" > >I want to use ReSt (reStructured

restructured text in python

2008-04-24 Thread bdsatish
Hi all, I have a python prog: #!/usr/bin/env """ Author: BDS Version: 1.0 """ def Hello(): """ Prints a Hello World to the screen""" print "Hello, World" if __name__ == "__main__": Hello() I want to use ReSt (reStructuredText) in my docstrings or comments. Any example of how