I'm trying to create a comment, using the Python library for WordPress's XMLRPC API, and set the comment's status to unapproved or "hold". But all comments insertions via the API seem to create approved comments.
comment = WordPressComment()
comment.content = body
comment.status = 'hold'
wp.call(NewComment(post_id, comment))
Is this parameter not supported on the create comments method?