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 to do it, w.r.t. above code ? Also how to invoke
rst on the Python code to do the processing ?

I know how to write in  RST but I want to know how to process the
resulting Python code
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to