Skip to content
Discussion options

You must be logged in to vote

It seems that they were not mentioned in official document, but I finally found in source code that they were defined in an Abstract Class (CommentAbstractModel) from which class Comment was subclassed.

class CommentAbstractModel(BaseCommentAbstractModel):
    name = property(_get_name, _set_name, doc="The name of the user who posted this comment")
    email = property(_get_email, _set_email, doc="The email of the user who posted this comment")
    url = property(_get_url, _set_url, doc="The URL given by the user who posted this comment")

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by tian-yan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant