def comment(self, comment=None):
"""Modify or return a string comment."""
assert isinstance(comment, (basestring, types.NoneType)), "A comment is a string"
if comment is not None:
self._comment = comment
return self._comment
评论列表
文章目录