我正在尝试添加一些>>> DocStrings
。这是我的一段代码:
def service_destroy(service)
=begin
service_check(service) retun 0 || 1
1 if service up and running
0 otherwise
=end
...
根据documentation和其他questions,必须忽略它,但我有语法错误:
syntax error, unexpected '='
=begin
^
答案 0 :(得分:3)
多行注释的开头和结尾必须放在一行的开头。