AttributeError: niedozwolone przypisanie pola „zadanie” w obiekcie wiadomości protokołu

Do wysyłania danych używam bufora protokołu python lib, ale ma pewne problemy, więc

Traceback (most recent call last):
  File "test_message.py", line 17, in <module>
    ptask.task = task
  File "build\bdist.win32\egg\google\protobuf\internal\python_message.py", line
513, in setter
AttributeError: Assignment not allowed to composite field "_task" in protocol message object.

src w następujący sposób:

plik proto:

message task {
    required int32 id = 1;
    required string msg = 2;
}

message task_info {
    required task task = 1;
}

kod Pythona:

task = yacc.task()
task.id = 1000
task.msg = u"test"
ptask = yacc.task_info() 
ptask.task = task # this line happen the runtime error 

questionAnswers(3)

yourAnswerToTheQuestion