Help me interpret PEP-257 which says "The class constructor should be documented in the docstring for its __init__ method. "

Does this mean that the constructor parameters should be documented in the class docstring or just the opposite?

#python

@fohrloop
My interpretation is that no, that's talking about the __init__ method docstring. The class docstring is distinct, and:
"The docstring for a class should summarize its behavior and list the public methods and instance variables."
@JoeP Thank you for the response. I wish there were one example in the PEP-257 which would make it clear :)