[Zope] Creating product with Python

Jerome Alet alet@unice.fr
Wed, 20 Dec 2000 14:21:41 +0100 (MET)


On Wed, 20 Dec 2000, Ivan Somov wrote:

>  Missing doc string at: http://localhost:8080/a/manage_addProduct/Boring/manage_addBoring
> 
>  I tried to change "manage_addBoring" method, and compared my product
>  with other working products, by there was no results from my attemptions.
>  What that Error message means?

This is self explanatory: each of your methods needs a docstring, e.g.:

def mymethod(self, ...) :
	"""My doc string"""
	...

otherwise Zope don't like them

hoping this will help

Jerome Alet