|
From: dman <ds...@ri...> - 2001-11-06 21:32:43
|
On Tue, Nov 06, 2001 at 02:35:21PM -0500, Robert Mueller wrote:
| Hi,
|
| I need some information using the Jython docstring feature. Could you
| please advise.
Simply put a string after a "def" or "class" line. Example :
def my_func( ) :
"""
This is the doc string.
"""
print "Hello World"
This is similar to "javadoc" comments, if you are familiar with them.
HTH,
-D
|